[visualization-api] column chart with multiple background colors

2021-10-11 Thread Linda van Engelen
I am looking for a chart with multiple backgroundcolors, and for the data columns. (see image) I found this: https://stackoverflow.com/questions/39669997/variable-background-colors-in-google-line-chart So i made a combo chart with stacked area and a line. And that worked. But i want the line

[visualization-api] Column chart

2021-09-28 Thread Sourav Roy
When I use google.charts.load('current', {'packages':['corechart']}); then 3d effect on column chart is not working Why not working ?? -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and s

[visualization-api] Column Chart Non-consecutive y-axis

2020-09-22 Thread Aharon K
Hello All, I created a Column Chart using JavaScript, basically just copying the code on the site and switching out the sample data for my data, but when I run it, I see the numbers on th

[visualization-api] Column chart : annotations

2019-10-08 Thread Denis Duval
Hello, In a column chart I want to write a vertical annotation like this : [image: Sans titre.png] My options code...: annotations: { > > alwaysOutside: false, > > highContrast: true, > > style: 'line', > > textStyle: { > > font

[visualization-api] Column Chart - image icons on hAxis

2019-01-08 Thread 'Thomas Stopp' via Google Visualization API
Hello everybody! I want to check Google Charts to rebuild a column chart similar to this one: [image: snippet_iw_columns.jpg] Now my question: is it possible to adjust the data or the options to show *small image icons on the hAxis *instead of just the text "Player 1-10"? My code: ht

[visualization-api] Column chart does not accept minValue

2018-11-09 Thread Daniel Santos
Column chart does not accept minValue, but, if I change to Bar, this chart does not change Legend position. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an em

[visualization-api] Column Chart hover over bubble working with VOX

2018-09-04 Thread Eddie Holt
I'm trying to get the google bar chart hover over bubble to respond to VOX. I need to generate the element with a tabindex (i.e. ) Does anyone know how to make the draw function to insert the tabindex into the bar rect element when it generates the response? -- You received this message be

[visualization-api] column chart with 2 data points for same x-value

2018-07-31 Thread Yvan Pelletier
code is working well but when there is 2 data points for the same variable for the same date, the columns are 1 px wide and seems to be one on top of the other. Can the width of such columns be changed to improve visualization? Any suggestions? -- You received this message because you are subs

[visualization-api] Column Chart vAxis bars not adjusting for 0.

2018-07-29 Thread Codewow
So I'm trying to get my column chart to work correctly. It works, but I must be doing something wrong with my data to where the bars to vary based on the starting point of 0. Here's what it looks like.

[visualization-api] Column Chart Not Displaying when Loading data Using Ajax

2018-06-28 Thread Andrew Mullen
I am using a Column Chart but when I try and load the data using Ajax I get the following error: Uncaught (in promise) Error: Not an array Here is how I am creating my chart: https://www.gstatic.com/charts/loader.js";> google.charts.load('current', {'packages':['bar']}); goog

[visualization-api] column chart no show value no value in tooltip (role)

2018-02-04 Thread marino signorelli
I have a simple chart (column chart with only one column with numbers ) I do not want to see the vertical axis with the scale of values, and in the tooltip (role) I want to see only the value of the horizontal axis (domain). it's possible ? exampe data='[ ["5d", 0], ["6d", 7], ["7d", 10], ["8d"

[visualization-api] Column Chart doesn't display label for every column

2017-11-10 Thread Hissashi Rocha
Hi, Not all the labels in the column chart are displayed, despite using the very google charts example. I've already tried setting showTextEvery:1 but it didn't work at all. What do I need to do? Thanks! Luiz https://www.gstatic.com/charts/loader.js";> // Load

[visualization-api] Column chart

2017-09-24 Thread 'Claude GUENIFFEY' via Google Visualization API
How may I scale the vertical axis of a coluim graph from 0 to 100 even if my datas are between 50 and 60. My code is : var sheet = SpreadsheetApp.getActiveSheet(); var chart = sheet.newChart() .setPosition(9, 1, 0, 0) .setChartType(Charts.ChartType.COLUMN) .addRange(sheet.getRange(

[visualization-api] Column Chart

2017-01-17 Thread Hariharan Dhanushkodi
Hi All, I need an update to the Column chart and the Look and feel to be as in attached. Tried a lot but in vain. Need support on this. Thanks Regards -- Y

[visualization-api] Column chart bar

2016-11-12 Thread Khaled Masri
I am new here, using google sheet to create some charts but all the rows are showing, I have 17 rows only showing 13 rows in the chart. can anyone help -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group

[visualization-api] Column chart question

2016-04-07 Thread Chun-Ling Chen
Have a question about whether we can have mutiple line in the 'Element': https://developers.google.com/chart/interactive/docs/gallery/columnchart#coloring-columns ex: var data = google.visualization.arrayToDataTable([ ['Element', 'Density', *{ role: 'style' }*], ['Copper'

Re: [visualization-api] Column chart padding

2016-02-29 Thread Dan Jones
Spot on, couldn't find it for looking. Many Thanks On Monday, 29 February 2016 14:02:39 UTC, Daniel LaLiberte wrote: > > Hi Dan, > > Check out the chartArea option. You'll want to set the 'chartArea.left' > and 'chartArea.width' options. There is also now a 'chartArea.right' > option. > > On

Re: [visualization-api] Column chart padding

2016-02-29 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Dan, Check out the chartArea option. You'll want to set the 'chartArea.left' and 'chartArea.width' options. There is also now a 'chartArea.right' option. On Mon, Feb 29, 2016 at 8:55 AM, Dan Jones wrote: > > I have a simple column chart which works perfect minus a padding I get on > left &

[visualization-api] Column chart padding

2016-02-29 Thread Dan Jones
I have a simple column chart which works perfect minus a padding I get on left & right Other chart types I have (Gant & Calendar) appear OK but the column chart has extra white space either side of the chart. How can I remove this padding? Only options specified are... var options = {

Re: [visualization-api] column chart cross x-axis issue

2015-10-26 Thread Jin Xie
thank you Daniel, `baseline: 0` fixes my problem :) On Monday, 26 October 2015 12:10:57 UTC, Daniel LaLiberte wrote: > > This appears to be due to two issues: the 0 value on the vertical axis is > not shown, and the chart area is not being clipped properly. You can force > the 0 value to be inc

Re: [visualization-api] column chart cross x-axis issue

2015-10-26 Thread 'Daniel LaLiberte' via Google Visualization API
This appears to be due to two issues: the 0 value on the vertical axis is not shown, and the chart area is not being clipped properly. You can force the 0 value to be included by adding a baseline option: vAxis: { baseline: 0 }, or by adding vAxis: { viewWindow: { min: 0 } }. This is probably wha

[visualization-api] column chart cross x-axis issue

2015-10-26 Thread Jin Xie
Hi, I'm experiencing problem with column chart cross x-axis line, as shown in the attached image it is always like this for some certain dataset. I've compared these different dataset, and found no obvious problem with them. Any one know what may has cause this problem -- You received this me

[visualization-api] Column Chart: Incorrect Scale and graph

2015-10-10 Thread Glady B
Here is my table, this is also the data rendered in the column chart then here is my Column

[visualization-api] Column Chart: Incorrect Scale and graph

2015-10-10 Thread Glady B
Here is my table, this is also the data in the rendered in the column chart then here is my Column chart: Take a look at the scale, from 22 it continues to 2 ,3 ,5 which seems to be incorrect.

Re: [visualization-api] [Column Chart] hAxis Label Autofill Disable?

2015-07-10 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Christian, With only a single value, the axis generator has no way to judge what the range of tick values should be.We are changing how this works so that only a single tick value will show up in that case, and I believe you should be able to see that behavior now if you load version 1.1.

[visualization-api] [Column Chart] hAxis Label Autofill Disable?

2015-07-10 Thread Christian Alexander
Hey Everyone, I'm using a column chart to show off values for a given day across a range of days. When I use a range slider to show only one date, the chart autofills the labels on the hAxis to show 2010,2020,2030, et cetera. Could anyone tell me of a way to prevent the Chart from making its ow

Re: [visualization-api] Column Chart Drilldown

2015-03-05 Thread 'Sergey Grabkovsky' via Google Visualization API
The Classic Column Charts already support clickable axis labels, and have for a while now. Although I wouldn't recommend using the labels for drilldown, since labels are referred to by their index, and if a label is omitted, then the indices won't match up to the categories anymore. Here's an examp

[visualization-api] Column Chart Drilldown

2015-03-05 Thread Guru Murthy
Any plans to upgrade Column Charts to make the Axes Labels clickable so that we can implement a drill down feature? The chart API does not support anything but a plain text. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubs

Re: [visualization-api] Column chart with one item spans multiple gridlines

2015-01-12 Thread 'Daniel LaLiberte' via Google Visualization API
It turns out you can indirectly constrain the width of columns in a ColumnChart when using a continuous value axis, which will work for timeofday. Just surround your value with a pair of rows that have null values for the series, as shown in this demo: http://jsfiddle.net/dlaliberte/tqzcceL2/ On

Re: [visualization-api] Column chart with one item spans multiple gridlines

2015-01-12 Thread levyuk
Hi Daniel, Thanks for your reply. Are you aware of any workarounds for this at the moment? Thanks Jon On Sunday, 11 January 2015 23:43:37 UTC, Daniel LaLiberte wrote: > > Jon, > > The column chart trying to use the space you gave it, and it doesn't know > otherwise that this is not what you wa

Re: [visualization-api] Column chart with one item spans multiple gridlines

2015-01-11 Thread 'Daniel LaLiberte' via Google Visualization API
Jon, The column chart trying to use the space you gave it, and it doesn't know otherwise that this is not what you want. We have no option to specify the bar width as a fixed value, either in pixels or relative to your data values, but we might consider adding that in the future. On Sun, Jan 11,

[visualization-api] Column chart with one item spans multiple gridlines

2015-01-11 Thread levyuk
Hi I have a problem with the column chart when there is only one item in the dataset. The single column spans far too many points on the horizontal axis. You can see what I mean by looking at this fiddle http://jsfiddle.net/hsez8cz9/ That is the example from the google page with the additional

Re: [visualization-api] Column Chart: HTML content for ticks

2014-12-02 Thread 'Sergey Grabkovsky' via Google Visualization API
No, this is not currently possible. On Tue Dec 02 2014 at 10:09:01 AM Ovi wrote: > Hello, > > Is it possible to have a column chart with customizable HTML for the hAxis > ticks? For example instead of the year 2004 I would like to have some HTML > divs containing other info as well. > > Thank yo

[visualization-api] Column Chart: HTML content for ticks

2014-12-02 Thread Ovi
Hello, Is it possible to have a column chart with customizable HTML for the hAxis ticks? For example instead of the year 2004 I would like to have some HTML divs containing other info as well. Thank you. -- You received this message because you are subscribed to the Google Groups "Google Vi

[visualization-api] Column Chart with a different color in each column with json

2014-11-15 Thread Juan Sedano
I´m trying to add a different color in each column, i have the following code to draw the chart: var formDataKinder = {type:"Kinder"}; var jsonDataKinder = $.ajax({ type: "POST", data : formDataKinder, url: "./content/chartsData.php", dataType:"json", async: false }).res

[visualization-api] Column Chart - Show percentage above each bar

2014-10-27 Thread Nicole Goldup
Hi there, page: http://www.hpvregister.org.au/research/coverage-data/hpv-vaccination-coverage-2013 Is it possible to show the percentage value above each bar? e.g. like the attached image Thanks, Nicole -- You received this message because you are subscribed to the Google Groups "Google Vi

[visualization-api] column chart font size change?

2014-10-27 Thread Abdul Javeed
Im trying to make the font bigger of the title only. I have had no luck, Below is my code, if you know the answer please code it in my html and paste the new code back again in the reply. Thanks http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml";>

Re: [visualization-api] Column Chart - Bar Colour and Spacing

2014-10-14 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nicole, For #1, you can use the style role, as exemplified here: https://developers.google.com/chart/interactive/docs/gallery/barchart#Colors. If you don't want to explicitly color your bars, though, you could create two series and stack them, set all nulls for the second one except for the las

[visualization-api] Column Chart - Bar Colour and Spacing

2014-10-13 Thread Nicole Goldup
Hello, page: http://www.hpvregister.org.au/research/coverage-data/hpv-vaccination-coverage-2012 I have 2 questions: 1. The last bar in the above chart needs to be a different color as it shows national data compared to state data. Is this possible? 2. Can we adjust the default spacing between

[visualization-api] Column Chart with data from db

2014-09-27 Thread Stefan Steuer
Hi guys, I tried to create a column chart with the following code 'Queue', 'type' => 'string'), array('label' => 'Tickets', 'type' => 'number') ); $rows = array(); while($r = mysql_fetch_assoc($sth3)) { $temp = array(); $temp[] = array('v' => (string) $r['Queue']); $temp[] = arra

[visualization-api] Column Chart using chart wrapper

2014-09-19 Thread Shivani Kanakhara
HI, I am using chart wrapper for generating column chart. But i cannot set the haxis title and few properties. Cannot find out the mistake. Pls help Here's my code. The title is displayed correctly. But all the other options inside 'ui'--haxis,vaxis,chartArea these do not work. Am i writing the

[visualization-api] Column chart - Bar color

2014-06-27 Thread Nagendra Singh
Hi all, How can we apply color to a bar as red whenever it is high? Like a bar which has the highest value should be always red, and medium value should have yellow and at last lowest value as green.. Please suggest a way as soon as possible -- You received this message because you are su

[visualization-api] Column chart not visible

2014-06-26 Thread Nagendra Singh
When I am hitting the url I am getting data in this form {"1":{"id":0,"bufferCount":24,"cpu":97.2,"memory":64.21965762722566,"siteName":null,"siteIndicatorColor":0,"dateOfOccurence":140207937}} Please suggest how can I map this to Column chart. I have tried using dataArray but an error- ca

[visualization-api] Column Chart using PHP

2014-03-17 Thread svnsundartest
I'm trying to display the following data in the column chart. When I used the below php code the chart is not displayed SQL output Year Month Count 1011 01 760 1011 02 2439 1011 03 764 1011 10 14 1011 11 562 1011 12 794 1112 01 891 1112 02 3428 1112 03 2256 1112 10 59 1112 11 379 1112 12 365 1

[visualization-api] Column Chart with variable colour

2014-03-13 Thread Floriano Sabatini
Dear all, I would like to use the column chart gouge with just one column that will represent the difference between Produced and Consumed energy. To be effective I need to have the colour of the column that change from green (if the value is positive) to red if it is negative. Is this somethin

Re: [visualization-api] Column Chart Annotation

2014-02-28 Thread Daniel LaLiberte
That should work. Have you tried it? On Fri, Feb 28, 2014 at 1:34 AM, TheInnovator wrote: >// Initialize data object to hold chart data > var dataAn = new google.visualization.DataTable(); > dataAn.addColumn('string', 'Analyst'); > dataAn.addColumn('number', 'Correspondence Clo

[visualization-api] Column Chart Annotation

2014-02-27 Thread TheInnovator
// Initialize data object to hold chart data var dataAn = new google.visualization.DataTable(); dataAn.addColumn('string', 'Analyst'); dataAn.addColumn('number', 'Correspondence Closed Over 30'); How do I implement the annotation on a column chart like below? I need to add *{ r

[visualization-api] Column chart want to display Image instead of X axis values

2014-02-24 Thread Alfreek
google.load("visualization", "1", {'callback': drawChart,packages:["corechart"]}); function drawChart() { var data = new google.visualization.arrayToDataTable([ ['string', 'Questions', { role: 'style' } ], ['HERE I WANT TO GIVE PATH',22,'color: #'], ]); var options = { title: 'Scheduler I

[visualization-api] Column Chart Rows Limit

2014-02-21 Thread Ashok Kumar
Hi, I am trying to generate a column chart from a csv file with 1677 rows. However the chart only displays data from the first 550 rows in the source CSV file. I am using the group method to display the max usage of tokens for each day in the month. I have also given my code hereunder. Regard

[visualization-api] column chart is not visible in ajax call

2014-02-05 Thread Ravindra Gharge
$.ajax({ type: "POST", url: "chart.php", cache: false, data: $("#my_form").serialize(), success: function (html) { //$("body").html(html); $("#chart_div").html(html);

[visualization-api] Column Chart - Oracle

2013-09-24 Thread João Luiz Barros
Bom dia, > > google.load('visualization', '1', {packages: ['corechart']}); > >

[visualization-api] column chart with arrow

2013-07-16 Thread Pamla Whittaker
I want to make a column chart which has an arrow at the top of each column. The arrow is either pointing up or down depending on if the column is lower or higher than the one on it's left. How do you do that as I can't find any examples with any sort of heading to the columns. Thanks -- You

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-08 Thread asgallant
t;>>> >>>>>> Can you post your code so I can see the problem in action? >>>>>> >>>>>> On Monday, May 6, 2013 8:34:53 AM UTC-4, malla reddy wrote: >>>>>>> >>>>>>> Hi, >>>>>>> Th

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-08 Thread malla reddy
;>>>> some problems. The bar which have large value it doesn't showing label >>>>>> on >>>>>> top of bar which means scale max is 1000 but my value is 980 it is not >>>>>> showing the value. Please help me >>>>>

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-08 Thread asgallant
Friday, 19 April 2013 18:22:30 UTC+5:30, asgallant wrote: >>>>>> >>>>>> You can calculate the text value dynamically in your DataView. As an >>>>>> example: >>>>>> >>>>>> var view = new google.visualization.

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-08 Thread malla reddy
gt;>>> calc: function (dt, row) { >>>>> // return the sum of all columns >>>>> var sum = 0; >>>>> var numberOfColumns = dt.getNumberOfColumns(); >>>>> for (var i = 1; i < numberOfColumns; i

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-08 Thread asgallant
t; } >>>> return sum; >>>> } >>>> }, { >>>> type: 'string', >>>> calc: function (dt, row) { >>>> // return the string value to use as the text >>>> var sum = 0; &

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-08 Thread malla reddy
string value to use as the text >>> var sum = 0; >>> var numberOfColumns = dt.getNumberOfColumns(); >>> for (var i = 1; i < numberOfColumns; i++) { >>> sum += dt.getValue(row, i); >>> } >>> retu

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-06 Thread asgallant
>>> On Thursday, 18 April 2013 23:11:31 UTC+5:30, asgallant wrote: >>>> >>>> This is not supported in the Visualization API, though there is a hack >>>> which you *may* be able to apply: http://jsfiddle.net/asgallant/QjQNX/ >>>> >>>> On

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-05-06 Thread malla reddy
> On Thursday, 18 April 2013 23:11:31 UTC+5:30, asgallant wrote: >>> >>> This is not supported in the Visualization API, though there is a hack >>> which you *may* be able to apply: http://jsfiddle.net/asgallant/QjQNX/ >>> >>> On Thursday, April 18, 2

[visualization-api] Column chart values wrong

2013-04-29 Thread Me Sham
Hi, I'm hoping to get some assistance here with my column chart. The data table for this chart has three values: a date, an attended value, and an unattended value. Ideally I want the attended and unattended values to stack into one column for each date. My problem is that when I use isStacked: tr

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-04-19 Thread asgallant
apply: http://jsfiddle.net/asgallant/QjQNX/ >> >> On Thursday, April 18, 2013 12:19:39 PM UTC-4, malla reddy wrote: >>> >>> I have google visualization api Column Chart with multiple data points >>> in each bar i want to show the total in the top of

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-04-19 Thread malla reddy
ant/QjQNX/ > > On Thursday, April 18, 2013 12:19:39 PM UTC-4, malla reddy wrote: >> >> I have google visualization api Column Chart with multiple data points in >> each bar i want to show the total in the top of the bar.please help me. >> In google charts api there is opt

[visualization-api] Re: I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-04-18 Thread asgallant
This is not supported in the Visualization API, though there is a hack which you *may* be able to apply: http://jsfiddle.net/asgallant/QjQNX/ On Thursday, April 18, 2013 12:19:39 PM UTC-4, malla reddy wrote: > > I have google visualization api Column Chart with multiple data points in

[visualization-api] I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me

2013-04-18 Thread malla reddy
I have google visualization api Column Chart with multiple data points in each bar i want to show the total in the top of the bar.please help me. In google charts api there is option called "Chm".but how can i use this option in google visualization Api Please

[visualization-api] Column Chart : showing values on top of each bar

2013-03-13 Thread Praveenkumar Gola
Hello guys. Is there a way to show values on top of each bar instead of in tooltip where you need to mouseover to see the values. Thanks -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop rece

Re: [visualization-api] Column chart and datetime

2013-03-07 Thread asgallant
You lose the other two bars per column because there isn't enough space to draw them. Lets say for the sake of argument that your chartArea (the part of the chart where the bars get drawn) is 500 pixels wide. With a 3-week range and 2 data points spaced 30 minutes apart, the chart has to make

Re: [visualization-api] Column chart and datetime

2013-03-07 Thread asgallant
If changing the width and bar group width doesn't fix it, then the only way to change it is to adjust the data. On Thursday, March 7, 2013 6:15:29 PM UTC-5, Morsi Tlili wrote: > > Thanks for your reply. I understood what you mean but what is quite > strange is that just 2 bars out of 3 disappear

Re: [visualization-api] Column chart and datetime

2013-03-07 Thread Morsi Tlili
Thanks for your reply. I understood what you mean but what is quite strange is that just 2 bars out of 3 disappear when adding the 2 last lines... Well, I tried modifying the chartwidth and the bar.grooupwidth but unfortunately that didn't change anything. I've attached two screenshots (with an

Re: [visualization-api] Column chart and datetime

2013-03-07 Thread asgallant
The last two rows, with the dates "new Date( 2013 , 2 , 5 , 11 , 55 , 59 )" and "new Date( 2013 , 2 , 5 , 12 , 29 , 37 )" are too close together. The API determines the available group width for each row of data and uses the smallest one for all rows of data; since these two rows are so close

Re: [visualization-api] Column chart and datetime

2013-03-07 Thread Morsi Tlili
Hi I'm having an issue with Column chart, I'm using the code below . It works well if I remove the last Item ( var timestamp= new Date( 2013 , 2 , 5 , 12 , 29 , 37 ) ; alert(timestamp); data.setCell(inc, 0, timestamp); data.setCell(inc, 1 , 8165 ); data.setCell(inc, 2 , 0 ); data.setCell(inc

[visualization-api] Column Chart remove bars that have zero value

2013-01-29 Thread Rastko Jokic
So, I want to remove bar from the column chart that has value zero so it doesn't take any space on the h-axis. Chart is not stacked. I wasn't able to find anything like that in API. Anyone has any ideas? Thank you in advance! -- You received this message because you are subscribed to the Googl

Re: [visualization-api] Column chart often becomes strange.

2013-01-17 Thread Blue
I'm sorry. The mistake was found in the code. The value acquired from the data base in reality enters though this code has the value to 0~1.5. I think the acquired value to be set surely. Because the value displayed to match the cursor is correct. [JavaScript]

Re: [visualization-api] Column chart often becomes strange.

2013-01-17 Thread Daniel LaLiberte
Hi Blue, If I copy/paste the code you provided, I get a syntax error because of an extra '}'. The last one in your code. That might just be a typo, or I wonder if this changes your code in some way that would explain what you are seeing. An earlier data variable, if there is one, would be expos

[visualization-api] Column chart often becomes strange.

2013-01-17 Thread Blue
The value acquired from the data base is made a graph. When the screen is displayed, shape in the graph often becomes strange. My best regards. [JavaScript]- var data = google.visualization.arrayToDataTable([ ['

[visualization-api] Column chart slanted text on multiple lines

2013-01-15 Thread Remco Bierbooms
I have a Google Column chart with just five bars. The horizontal axis labels are slanted (hAxis.slantedText = true, hAxis.slantedTextAngle = 30). Because the labels are quite long, they get cropped off ("this axis label is too l..."). However, since there is enough space between the bars, I wou

Re: [visualization-api] Column chart - column with two values

2012-12-20 Thread Sergey Grabkovsky
Hi, the way you're phrasing this doesn't really make sense. Axes have to have a consistent scale, and while you can make one column seemingly have multiple values, that'll be more difficult to visualize with multiple columns. Take the following example: User1 has 20 emails, and 30 activities User2

[visualization-api] Column chart - column with two values

2012-12-20 Thread Arthur Shvetsov
Hi, guys! How can I display two different values for a single column in column chart on left and right vAxis? For example, I have a *single *column 'user' and I need to show his number of emails on left vAxis, and number of activities on right vAxis. I know, that i can create *two *seperate colu

[visualization-api] Column Chart doesn't display on IE8

2012-12-14 Thread Lin Dou
I copied the sample code from google's column chart api, and create a test html, https://www.google.com/jsapi";> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = google.vi

[visualization-api] Column Chart - display a total amount of the stacked amounts

2012-11-08 Thread John Cebedo
Hi, I have a stacked Column Chart and I am wondering if there is a way to display on the graph a number that represents the cumulative amount of each stacked element of a column. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To v

[visualization-api] column chart select handler unable to open links in new window on Safari

2012-11-06 Thread Mustafa Husain
I have a column chart hooked up with select handler google.visualization.events.addListener(testViewChart, 'select', chartSelectHandler); function chartSelectHandler() { window.open(someurl, '_blank'); } I want to open my links in a new window but the above code doesn't work on safari and

[visualization-api] Column chart v axis display format in 'hh:mm:ss'

2012-10-03 Thread Arthur Shvetsov
Hello everyone! I need to show time on vAxis in column chart. For example: 00:50:00 00:40:00 00:30:00 00:20:00 00:10:00 00:00:00- User 1 User 2 User 3 What is the best solution to my issue? I can build diagramm using

[visualization-api] Column Chart Baseline position

2012-10-03 Thread Ovi
Hello, I have a ColumnChart in my application and i want to display a baseline for a selected column (i.e vAxis.baseline). The problem is that when i set the baseline value, the format of the chart changes a bit, meaning that all values below the baseline value are shown as "negatives" (it's li

[visualization-api] Column chart - setting explicit value for height of chart

2012-08-23 Thread funkdified
I would like set the window height to a certain value so that the graph always shows 0-100 on the vAxis even when only small values are shown. Unfortunately I haven't figured out a way to do this.. even when using: viewWindowMode 'explicit' and setting: viewWindow min 0 and max 100 Is there a

[visualization-api] Column chart with Date-typed values on X-axis

2012-08-22 Thread Vasily
Hello! I use a column chart with the values of a type "Date" on the X-axis. There are several groups of values, so at every date point there are several columns on the chart. The problem is that the chart area is edged right by the first and the last data points, without any margins, so some of

[visualization-api] Column chart with dates on X-axis

2012-08-16 Thread Vasily
Hello! I use Column Chart with several groups of values and date values on the X axis, and faced with a problem. Horizontally, the chart area is cutting out directly by the first and last date point without leaving any margin, so the bars displaying values for the first and for the last date in

Re: [visualization-api] Column Chart crops the end bars

2012-06-28 Thread asgallant
I agree - you shouldn't use the "columnchart" package, but that's not the source of your problem, since you are only loading that for non-IE browsers. Can you post example code with static data that reproduces the problem? Without data I can't help, and the image you posted is too small for m

Re: [visualization-api] Column Chart crops the end bars

2012-06-27 Thread ChartMan
You should always use 'corechart' why are you using 'columnchart' ? On Thu, Jun 28, 2012 at 2:24 AM, SherCoder wrote: > I am trying to display column chart in IE. It crops the bars from both > ends of the chart in IE9. I know the data is there because i am testing it > with other browsers. > > Th

[visualization-api] Column Chart crops the end bars

2012-06-27 Thread SherCoder
I am trying to display column chart in IE. It crops the bars from both ends of the chart in IE9. I know the data is there because i am testing it with other browsers. This is the link to the image of how the graph looks. Any help would be really appreciated. P.

[visualization-api] Column Chart labels color

2012-04-03 Thread B4rt0
Hello, I use JavaScript Column Chart generator and I can't change labels color. I used many options, but I couldn't achieve it by no means. They are grey all the time, no matter what I try. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" gr

Re: [visualization-api] Column Chart Display Zero

2012-02-21 Thread MC Get Vizzy
Try doing something like vAxis: {baseline: -1} (depending on the scale of your data). On Tue, Feb 21, 2012 at 7:48 AM, Carlo Rodriguez wrote: > Hi, I wonder if it's possible to display zero values in a column > chart? So that zeroes would have a small line instead of being blank? > > Thanks! > >

[visualization-api] Column Chart Display Zero

2012-02-20 Thread Carlo Rodriguez
Hi, I wonder if it's possible to display zero values in a column chart? So that zeroes would have a small line instead of being blank? Thanks! -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to goog

[visualization-api] Column Chart - Bars floating above axis instead of on it

2011-12-20 Thread Brian Ouellette
I'm seeing an issue in IE only (IE8 and IE8 Compatibility Mode, Chrome and Firefox display fine) where some of the columns in the column chart are not properly aligned with the X axis. You can see an example of this here: http://i.imgur.com/OCIEu.png I have other charts where the "floating" bars a

[visualization-api] Column chart from spreadsheet

2011-12-13 Thread henriklevinsen
I'm using a Google spreadsheet as datasource on a column chart. First column in the spreadsheet is years, second column is value. But... first column is read as value. How do I make it a 'string'? -- You received this message because you are subscribed to the Google Groups "Google Visualization

[visualization-api] Column Chart Values Over Bar

2011-09-21 Thread lucentminds
I want to be able to take a column chart display the value of each column either above each column or superimposed over each bar itself. Are there options in the Google Charts that would allow that, or can anyone point me in the right direction as to how to do it. If all of the charts are just svg

Re: [visualization-api] Column Chart - Adjusting width/padding of columns?

2011-06-12 Thread Jinji
Nope, sorry. The width of bars is automatically calculated according to the number of bars and the width of the chart, and can't be changed externally. On Fri, Jun 10, 2011 at 6:23 PM, CZ < christina.zellman.penn.medic...@gmail.com> wrote: > Is there a way to increase the width & padding of the c

[visualization-api] Column Chart - Adjusting width/padding of columns?

2011-06-10 Thread CZ
Is there a way to increase the width & padding of the columns in the chart? Is there an option for this? I didn't see any options here: http://code.google.com/apis/chart/interactive/docs/gallery/columnchart.html#Configuration_Options (Note: I do NOT want adjust the actual chart's width or padding

[visualization-api] Column Chart: Setting different colors for a set of columns/bars falling under each category.

2011-04-28 Thread Deepak
I'm using Google Visualization Java API (corechart) for rendering a Column chart which displays the month-wise data for a couple of years. Currently all the columns/bars are shown in the same color irrespective of the year in which they fall under. Is there a way by which we can show the bars repre

[visualization-api] Column chart with horizontal line

2011-03-15 Thread Ben
Hi All, Is that possible to draw a horizontal line in a column chart graph. Assuming I have production and target for each month and I want to display the production column bar for each month but because target is same for all months I would like to show it as a single figure using a horizontal li

Re: [visualization-api] Column Chart Horizontal Axis - Number Format

2010-09-12 Thread ChartMan
The old charts are not supported but a quick check in the new charts shows the same problem occurs. We can try fixing this for the new charts assuming you will migrate your code to using them. Thanks for reporting, ChartMan On Thu, Sep 9, 2010 at 4:44 PM, Lucas wrote: > Hi! I'm using the old v

  1   2   >