Re: [visualization-api] loading corecharts (V43) and geocharts on the same page.

2015-12-16 Thread 'Jon Orwant' via Google Visualization API
Soon, you'll be able to load geocharts in the way described on the basic_load_libs page. In the meantime, if you want to use both at the same time, you need to load corecharts in the way described on the geocharts page. Sorry that this is confusing -- it's a temporary situation. Jon On Wed, Dec

Re: [visualization-api] loading corecharts (V43) and geocharts on the same page.

2015-12-16 Thread 'Jon Orwant' via Google Visualization API
It'll load the current version, which at the moment is 43. Jon On Wed, Dec 16, 2015 at 10:40 AM, wrote: > Thanks, Jon. > > And that will load version 43 of corecharts? > > On Wednesday, December 16, 2015 at 10:35:42 AM UTC-8, orw...@google.com > wrote: >> >> Soon, you'll be

[visualization-api] Re: Save a chart with overlay to PNG (chartWithOverlay)

2015-12-16 Thread Torstein Viddal
Won't save to PNG with the plot: Overlay. -- 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 email to

[visualization-api] loading corecharts (V43) and geocharts on the same page.

2015-12-16 Thread ross
I would like to include 'corechart' and 'geochart' on the same page. However, these packages are loaded differently, e.g. see: https://developers.google.com/chart/interactive/docs/basic_load_libs How (when, what order) might they be properly loaded to avoid potential conflicts? -- You

Re: [visualization-api] Pie Chart is not displaying percentage for low values

2015-12-16 Thread Sergio Guillen
I first option was labeled and I had this: http://jsfiddle.net/5rd751hx/8/ As you can see small values doesn't have an associated label. You'll have to change your chart bounds so there is room for the labeled > legend values, which are displayed outside the piechart circle. > Maybe the

Re: [visualization-api] Re: Save a chart with overlay to PNG (chartWithOverlay)

2015-12-16 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Torstein, Since your overlay is implemented with your own image that happens to be drawn in the same area of the page as the chart, the feature which saves the chart to an image doesn't know about your image. I don't know of any way to work around that, such as merging two images into one.

Re: [visualization-api] Pie Chart is not displaying percentage for low values

2015-12-16 Thread 'Daniel LaLiberte' via Google Visualization API
The labeled legend feature can't always show all the labels, depending on how much space there is outside the piechart. But in your case, you would have more room if you either change the order of the rows or rotate the piechart around so there is a better distribution between the left and right

[visualization-api] Disable Zoom on Line Chart

2015-12-16 Thread Mike Schmidt
Is there a way to disable the mouse scroll wheel when hovering over a line chart? Currently it causes the graph to zoom in and out. I just want the page to scroll up and down. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To

Re: [visualization-api] Linking a chart on my website to Google Sheets.

2015-12-16 Thread ninja8370
Okay, I tried google.visualization.Table and google.visualization.TableChart and neither worked, I googled and couldn't find an answer.. How am I supposed to put that data into a table? Also, I originally didn't have those quotation marks in, I just put them in to see if they'd fix the string

Re: [visualization-api] Linking a chart on my website to Google Sheets.

2015-12-16 Thread 'Daniel LaLiberte' via Google Visualization API
Table charts are documented here: https://developers.google.com/chart/interactive/docs/gallery/table Note that you should add package 'table'. Calling google.visualization.Table should have worked, if you used it correctly. On Wed, Dec 16, 2015 at 6:33 PM, ninja8370 wrote:

[visualization-api] Re: Save a chart with overlay to PNG (chartWithOverlay)

2015-12-16 Thread George Risvas
Hi Torstein, There is a 3rd party javascript library named grChartImg ( http://www.chartstoimage.eu), which it supports the merging of images or the combination of overlays to a single image.Also the library has much more features.The specific feature called combined-overlaid and it supported

Re: [visualization-api] Disable Zoom on Line Chart

2015-12-16 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Mike, See the explorer.actions options at: https://developers.google.com/chart/interactive/docs/gallery/linechart On Wed, Dec 16, 2015 at 5:28 PM, Mike Schmidt wrote: > Is there a way to disable the mouse scroll wheel when hovering over a line > chart? > Currently it

[visualization-api] Control the width of the candlestick wick.

2015-12-16 Thread strike44 . optimus
Hello, I have gone through the post, and understand that currently the width of the candlestick cant be controlled, the issue is when we have a bigger data set across months say for stock price - the chart becomes a bit unreadable as the candlestick wick's width cant be adjusted and all sticks

Re: [visualization-api] Re: Calendar chart not working for November and December?

2015-12-16 Thread 'Daniel LaLiberte' via Google Visualization API
Patrike, The Calendar bug should be fixed, and I pushed out frozen version 44 so you can try it. See instructions for using frozen versions at: https://developers.google.com/chart/interactive/docs/basic_load_libs#frozen-versions By the way, this is not a final version 44, and it is not

[visualization-api] Save a chart with overlay to PNG (chartWithOverlay)

2015-12-16 Thread Torstein Viddal
Using Google Charts, I want to have the overlay saved to the same PNG as the chart itself. I know how to save just the chart to PNG, problem is the chartWithOverlay doesn't make it to the PNG (it is saved without overlay). I have no strong feelings pro/con the chartWithOverlay method