[visualization-api] Using category filter to display different data formats in single chart container

2015-09-02 Thread dunbar . nick
Hi, I'm trying to find a way to use multiple category filters to display filtered views of a data table in line chart form. The data is a table with time series columns representing different categories/subcategories, some of which are dollar amounts and some are ratios of these amounts

[visualization-api] Interactive Graphs with Data Source in Google Sheets

2015-09-02 Thread samuel . martindelrio
I have this little Pie Chart https://www.google.com/jsapi";> google.load('visualization', '1'); google.setOnLoadCallback(drawVisualization); function drawVisualization() { var wrapper = new google.visualization.ChartWrapper({ chartType:

[visualization-api] new Date summing 1 month

2015-09-02 Thread Ricardo Pereira
I am using the charts for some months but I've never realized that, just today I saw it. The problem is, for example when we use [new Date(2015,01,10),1000] , it shows February, when it was supposed to show January. Here is a fiddle example: https://jsfiddle.net/ns91ft9v/1/ And even the

[visualization-api] Making table headers opaque

2015-09-02 Thread rishu oberoi
Attached is the image of my the google tables I am using. How can I make the table headers opaque? I tried the opacity attribute but does not work. Thanks! Rishu -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe

Re: [visualization-api] new Date summing 1 month

2015-09-02 Thread 'Daniel LaLiberte' via Google Visualization API
When you use the Date constructor, the month numbers start at 0, not 1. This is a frequently tripped-over issue with JavaScript Dates (as well as for most languages). On Wed, Sep 2, 2015 at 8:03 PM, Ricardo Pereira < ricardobarrospere...@gmail.com> wrote: > I am using the charts for some months

[visualization-api] Google Timeline obeying 'style' column

2015-09-02 Thread Mike O'Connell
Has anyone gotten 'style' columns to work for timelines or have any idea when they're going to be? As per the snippet below: console.log(google); google.load("visualization", "1.1", { packages: ["timeline"] }); google.setOnLoadCallback(drawMap); function drawMap() { chart = new

Re: [visualization-api] Using category filter to display different data formats in single chart container

2015-09-02 Thread Nick Dunbar
Just adding a further comment to this: it seems odd to me that the API forces me to format data twice: once with NumberFormat and a second time for chart axes. Shouldn't there be a way for chart axes to inherit the data format already defined by NumberFormat? It would save a lot of trouble if that

[visualization-api] Timeline not obeying options.timeline.barLabelStyle

2015-09-02 Thread Mike O'Connell
We've generated a jsfiddle for creating a timeline: http://jsfiddle.net/wfjzkddg/2/ If you note the bar font is not obeying the fontSize as prescribed in the options, however the bar does resize accordingly. Upon inspection of the SVG the text component does indeed reflect the font-family and

Re: [visualization-api] Timeline not obeying options.timeline.barLabelStyle

2015-09-02 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Mike, This appears to be due to jsfiddle's 'Normalize CSS' option. It sets the font-size property of all elements to '100%', which causes our style to be ignored. If you simply disable that option, everything should look as expected: http://jsfiddle.net/wfjzkddg/3/ On Wed, Sep 2, 2015 at 8:01

Re: [visualization-api] Timeline not obeying options.timeline.barLabelStyle

2015-09-02 Thread mike
Ah yes thanks, i see it in production. Any idea when role: "style" columns will be obeyed in the timeline? > On 02 Sep 2015, at 15:40, 'Sergey Grabkovsky' via Google Visualization API > wrote: > > Hi Mike, > > This appears to be due to jsfiddle's