[visualization-api] Paginate LineChart together with Legend

2016-06-06 Thread tsw . ppc
I have a LineChart with lots of data. The legend paginates by default, but the line chart currently shows everything (there's too many lines and it's messy). I want the line chart data to paginate together with the legend (i.e. only show lines corresponding to the current legend page). Is this

[visualization-api] Order of the charts (over/under)

2016-06-06 Thread eduardo . strle
Hey guys, whats up. The GCharts is working great for me, however, today I've found something I can't get around. I'm willing to plot a line *over *some candlesticks, but so far I could not. The html works just ok when I do something like this, but the candlesticks end up over the lines:

Re: [visualization-api] Pivot Table with Text

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Melissa, Your question sounds more specific to Google Sheets queries, unless you are talking about how to query the data for an actual Google Charts chart. (documented here: https://developers.google.com/chart/interactive/docs/spreadsheets) You might get more help in a Google Sheets forum,

Re: [visualization-api] Re: Trying to set 2nd Y-axis as percentage to specific value

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
Hi deadballo, There is actually an undocumented option that might help, at least for scaling the auto computed tick values. vAxes: { 1: { "formatOptions": { "scaleFactor": 2.8 } }} You might need 1/2.8 instead. I'm also not sure of how it will combine with the '%' format.

[visualization-api] Re: Trying to set 2nd Y-axis as percentage to specific value

2016-06-06 Thread deadballo
Is this not possible in Google Charts? On Wednesday, June 1, 2016 at 2:41:32 PM UTC-7, dead...@gmail.com wrote: > > Hi. I've made the following graph(hopefully this shows up): > > >

[visualization-api] Pivot Table with Text

2016-06-06 Thread Melissa Zinder
Hi! Here is the spreadsheet I'm referring to: https://docs.google.com/spreadsheets/d/1VmlqVlh7OBj6hXL1C6Lpw2P5YDY9AdGzNGPqGQvMJi8/edit?usp=sharing I'm trying to make a pivot table of sorts with text, using the data from the "Stories" tab. A template of the chart I'd like to make is on the

Re: [visualization-api] Update to v45 apparently didn't take place

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
V45 is now available on the gstatic server by loading either "upcoming" or "45" with google.charts.load(). If you are using the old jsapi loader, you should try using the new loader by switching your code to the following: https://www.gstatic.com/charts/loader.js";>

Re: [visualization-api] Re: Google Charts V45 Production Release will be pushed April 26, 2016

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
V45 is now available on the gstatic server by loading either "upcoming" or "45" with google.charts.load(). If you are using the old jsapi loader, you should try using the new loader by switching your code to the following: https://www.gstatic.com/charts/loader.js";>

[visualization-api] Re: Timeline - How to Control Width of Row Label.

2016-06-06 Thread WebFOCUS Guy
Thought I'd 'bump' this thread. I realize that a user request for a 'long label' is unreasonable, except in those cases where it isn't. :-) -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and

Re: [visualization-api] Timeofday error translation time to my timezone

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Oleg, I don't know when we will have time to fix the timeofday support for material charts. There are many more things you can adjust using corecharts with theme: 'material' to make it more closely approximate the material charts. On Mon, Jun 6, 2016 at 1:02 PM, Олег

Re: [visualization-api] Timeofday error translation time to my timezone

2016-06-06 Thread Олег
Hello, Daniel. Thank you very much for your help. Now I have everything works. But it looks very outdated. When you are planning to introduce timeofday axis support for Material Bar? With best regards, Oleg понедельник, 6 июня 2016 г., 17:20:01 UTC+3 пользователь Daniel LaLiberte написал:

Re: [visualization-api] First column on Y axis

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
Check out the 'orientation' option. var options = { ... orientation: 'vertical' } On Mon, Jun 6, 2016 at 11:32 AM, AMC Mecanocaucho wrote: > Hello, > > I'm trying to do a line graph with 3 series. I'm trying to plot the > different natural frecuency properties

Re: [visualization-api] Is legal to create chart generator for this library?

2016-06-06 Thread 'Jon Orwant' via Google Visualization API
That's fine. Jon On Mon, Jun 6, 2016 at 5:41 AM, Omar Sedki wrote: > I am the owner of livegap charts http://charts.livegap.com > It's chart generator . Now it support chartnew.js library. > By the end of this month it will support chart.js too. > > I want to know can i

[visualization-api] First column on Y axis

2016-06-06 Thread AMC Mecanocaucho
Hello, I'm trying to do a line graph with 3 series. I'm trying to plot the different natural frecuency properties depending on the load. An example data, would be this: ['load'],['NatFreq1'],['NatFreq2'],['NatFreq3'] [10],[20.3],[22.5],[23.6] [15],[22.5],[25.1],[26.4] [20],[24.5],[27.2],[28.3]

Re: [visualization-api] Google chart x axis label text

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
Yes, you can specify the format for each tick value if you are using the ticks option. e.g. ticks: [{v:1, f:'one'}, {v:2, f:'two'}, 3] On Mon, Jun 6, 2016 at 7:00 AM, Artūras Šliažas wrote: > This is my chart example: > > > JSFiddle

Re: [visualization-api] Timeofday error translation time to my timezone

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
The Material Bar chart doesn't properly support the timeofday axis. But you can get similar fonts and colors using theme: 'material' with corecharts. See https://jsfiddle.net/dlaliberte/b9fdx6fa/1/ On Mon, Jun 6, 2016 at 6:57 AM, Олег wrote: > Hello! > > I did a section on

Re: [visualization-api] timeofday data type is being drawn 5 hours behind the data I enter.

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
The answer on stackoverflow looks correct. The Material chart doesn't draw the axis correctly for a timeofday scale, so at best, use theme: 'material' with a corechart. On Sun, Jun 5, 2016 at 8:43 PM, Marcus wrote: > I am trying to draw a simple bar chart using the

Re: [visualization-api] Thicker bar

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
As another alternative for constructing your own chart graphics, you might want to experiment with using the variableWidth feature ( bar: { variableWidth: true } ). On Mon, Jun 6, 2016 at 9:51 AM, Daniel LaLiberte wrote: > You are using the trick I suggested of inserting

Re: [visualization-api] Horizontal scrollbar

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
We don't have a way of scrolling the chartArea, but it would be a nice idea. On Sat, Jun 4, 2016 at 8:35 AM, Artūras Šliažas wrote: > Hello guys! > > Here is my chart: > https://jsfiddle.net/5yv936sr/5/ > > I wanted to ask if there is a way to make elements in chart

Re: [visualization-api] Thicker bar

2016-06-06 Thread 'Daniel LaLiberte' via Google Visualization API
You are using the trick I suggested of inserting an empty column between your groups. Unfortunately, this trick is limited to only allowing a one bar-stack separation between groups. On Sat, Jun 4, 2016 at 8:20 AM, Artūras Šliažas wrote: > Hello guys! Here is my

[visualization-api] Change x axis label text

2016-06-06 Thread Artūras Šliažas
This is my chart example: https://jsfiddle.net/3g454use/ Is there a possibility to define custom x axis label text for each tick, for

[visualization-api] Timeofday error translation time to my timezone

2016-06-06 Thread Олег
Hello! I did a section on the site to keep track of how much hours a day I'm working. For days I use the 'datetime', and for hours I use 'timeofday'. The problem is that I live in Sochi (GMT +3) and converts timeofday my 3 hours to 6 hours :) I am very pleased to look at this schedule, but I

[visualization-api] Rebased or Indexed Data

2016-06-06 Thread RJB
Hi, Can anyone help with how best to handle rebased or indexed data. For example I want to use line charts but depending on the time frame on the x axis, I want to rebase the data back to 100. Does google do charts that automatically rebase the data to 100 depending on the time frame? Any help,

[visualization-api] Is legal to create chart generator for this library?

2016-06-06 Thread Omar Sedki
I am the owner of livegap charts http://charts.livegap.com It's chart generator . Now it support chartnew.js library. By the end of this month it will support chart.js too. I want to know can i make a generator for google visulaization .or the license don,t accept that. My is commercial (i put

[visualization-api] https://jsfiddle.net/api/post/library/pure/

2016-06-06 Thread roberto taormina
Good morning, I do not speak very well English I tried this code https://developers.google.com/chart/interactive/docs/gallery/columnchart#coloring-columns I would like to

Re: [visualization-api] Highlighting a column (current) month on x-axis of a scatter-chart

2016-06-06 Thread Bram Patelski
Got it working. Hope to see that radar-chart in Google Charts as well. Currently using Flotr2 for this. On Wednesday, June 1, 2016 at 9:24:17 AM UTC+2, Bram Patelski wrote: > > Hi Daniel, > > Thank you for the example. That should work for this diagram. I'm > currently looking into alternatives