Re: [visualization-api] Re: Timeline - x-axis - Scale or ScrollBar

2014-10-04 Thread ss kumar
Hi, Thanks for ur reply. Could you reply sample code on how to use it? Thanks. On Fri, Oct 3, 2014 at 7:26 PM, Andrew Gallant wrote: > The closest solution for this is to use a ChartRangeFilter > ,

[visualization-api] Re: labels and shading for area charts

2014-10-04 Thread John Hughes
The series suggestion worked perfectly, thanks. Technically I want to label the first and last points on one of the traces. Something along the lines of data[0].label = "start" and data[len-1].label = "end". I don't want the labels on the middle points. Attached is the chart I am trying to em

[visualization-api] Re: Automatically paging through legend

2014-10-04 Thread Andrew Gallant
Sorry, but there is no way to track or set the page of the legend. You could remove the legend and implement your own in HTML, though. On Saturday, October 4, 2014 2:32:21 PM UTC-4, Daniel Haas wrote: > > The legend of my LineChart has 2 pages that I can switch between using > arrows: >

[visualization-api] Re: labels and shading for area charts

2014-10-04 Thread Andrew Gallant
Do you want to have axis labels at the end points, or do you want to label the data points themselves? For the area fills, set the series..areaOpacity option to 0 for all series that you want to remove the shading on. So, if the first, second, and third data series should not have area fills,

[visualization-api] Re: timeline: how do I make it go past last interval, and also, I may have found a bug

2014-10-04 Thread Andrew Gallant
The timeline charts do not support setting a specific range for the time axis. I cannot replicate your issue with the extra character after the div. If your chart is too short to contain the data you input, the API will add a vertical scroll bar, though. On Saturday, October 4, 2014 7:50:42 A

[visualization-api] Re: Parse json data to google visualisation api

2014-10-04 Thread lifeststake
Hi, Can we convert this table into pie chart? Because I think piechart requires a string and a number to follow along. But its not working when I change "var chart = new google.visualization.Table(document.getElementById(' chart_div'));" to "var chart = new google.visualization.PieChart( docume

[visualization-api] Automatically paging through legend

2014-10-04 Thread Daniel Haas
The legend of my LineChart has 2 pages that I can switch between using arrows: . However, when the chart is redrawn, the legend is reset to page 1. I'm

[visualization-api] labels and shading for area charts

2014-10-04 Thread John Hughes
I am converting a Flash AreaChart to a Google AreaChart, so far so good but I have two questions. The chart I have has 4 trend lines with shading below. H title, V title, and legend right. 1) I need to a label to the end points (far left, far right). All four lines start at the same point.

[visualization-api] timeline: how do I make it go past last interval, and also, I may have found a bug

2014-10-04 Thread Ivan Kalish
I have a timeline application where I want something like: --XXXXXX--X- In other words, the time line goes beyond the last interval (shown by X's) There seems to be no way to do that. Also, I may have found a bug, since an extra character seems to appear af