Re: [visualization-api] Is there a callback to tell me when my table is ready?

2016-04-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Bill, You can use the 'ready' event to alert you that any visualization (including Table) has finished rendering. Here is an example of doing that: http://jsfiddle.net/cond05ko/ On Fri, Apr 1, 2016 at 8:36 AM Bill Bohling wrote: > I'm occasionally experiencing a lag

Re: [visualization-api] Google Timeline Chart HTML on ROW

2016-03-30 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, There is currently no way to put HTML inside of a bar. On Wed, Mar 30, 2016 at 9:04 AM wrote: > Hello, > > I'm using google timeline chart and i'm trying to put html inside bar text > without success. Anyone knows how can i do this? > > Ex: > > dataTable.addRows([

Re: [visualization-api] Re: Cannot read property '0' of undefined

2016-03-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Bill, Just to be clear, you're substituting "milliseconds" with the actual milliseconds, correct? Like "Date(13829382)"? If so, could you please post a complete code sample that reproduces your issue? On Tue, Mar 29, 2016 at 5:02 PM Bill Bohling wrote: > Hi Sergey, > >

Re: [visualization-api] Histogram with single row of data

2016-03-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Susanne, It appears that you found a bug. We will do our best to fix it soon, but until then you can just use version 43. On Tue, Mar 29, 2016 at 4:40 PM Susanne wrote: > If you make a histogram with a single row of data, the one bar it shows > does not seem to have a

Re: [visualization-api] Cannot read property '0' of undefined

2016-03-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Bill, I believe that your issue stems from using dates incorrectly. Please follow the instructions on this page to properly format your dates. On Tue, Mar 29, 2016 at 4:03 PM Bill Bohling wrote: > I've

Re: [visualization-api] get the title of selected label

2016-03-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Yes, you'll have to get it from the source DataTable. Assuming that you named your DataTable "data", you might have some code in your selection handler like the following: var sel = chart2.getSelection(); var col = sel[0].column; var label = data.getColumnLabel(col);

Re: [visualization-api] get the title of selected label

2016-03-29 Thread 'Sergey Grabkovsky' via Google Visualization API
So have you figured out what you needed to do? Or do you still need help? On Mon, Mar 28, 2016 at 4:04 PM wrote: > Thank you for your responce, > > I am using barcharts, > > I was able to get the column number by doing this: > >

Re: [visualization-api] get the title of selected label

2016-03-25 Thread 'Sergey Grabkovsky' via Google Visualization API
Different charts may manage their selection differently. What chart(s) are you using? On Fri, Mar 25, 2016 at 3:53 PM wrote: > // a click on label > google.visualization.events.addListener(chart1, 'select', > selectHandler); > > > function selectHandler(e) {

Re: [visualization-api] Timelines not lining up

2016-03-24 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Stephen, It looks like the Date constructor isn't parsing your dates properly. Experimenting with it in the console, I found that: new Date(2016, 5, 2) results in the date "Thu Jun 02 2016 00:00:00 GMT-0400 (EDT)" new Date('2016-06-02') results in the date "Wed Jun 01 2016 20:00:00 GMT-0400

Re: [visualization-api] JSON data from web method for Donut chart

2016-03-23 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, A JSON string must have its properties double quoted, not single quoted. Let me know if you still experience issues after fixing this. On Wed, Mar 23, 2016 at 6:22 AM Md Rehan Moazzam wrote: > Hi, > > I am trying to provide a json string to googlepie chart but every

Re: [visualization-api] Very basic question

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Alexander, 1. It depends on what you're talking about. We don't support 3D charts like the one on that page, but our dashboards do support the type of connectivity that you appear to be looking for. 2. It really depends on your capabilities and capacity to understand new concepts. In my

Re: [visualization-api] Russian Federation, Greenland country not coming in Google world maps

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Yes, no license is required. Google Charts is free to use as long as you follow our Terms of Service. On Tue, Mar 22, 2016 at 1:34 PM Akash Jain wrote: > ok got it.. I checked the documentation and that helped me to change the > colors etc. > > One last thing, I hope I can

Re: [visualization-api] Russian Federation, Greenland country not coming in Google world maps

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Akash, We don't provide any utilities for doing drilldown for any of our charts. However, we do support enough events for you to hook this up yourself. There have been numerous people asking about this on this mailing list. You should be able to find a post pretty easily. You can certainly

Re: [visualization-api] Russian Federation, Greenland country not coming in Google world maps

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
The GeoMap is extremely deprecated and we strongly urge anyone using it to use the GeoChart instead. Please post back if you experience these issues with the GeoChart. On Tue, Mar 22, 2016 at 11:52 AM Akash Jain

Re: [visualization-api] Russian Federation, Greenland country not coming in Google world maps

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Akash, I will need more code than that if I am to help you figure this out. Could you either link to the website where you are experiencing this error, or distill the error into a jsfiddle? The code you gave doesn't appear to have any relevance to the issue you're experiencing. On Tue, Mar 22,

Re: [visualization-api] Google Charts on a Closed Network

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi J, It is against our terms of service to download Google Charts code and serve it yourself. We may support this use case at some point in the future, but currently do not. On Mon, Mar 21, 2016 at 10:56 AM J Richards wrote: > Hi, > I'd like to use Google Charts for an

Re: [visualization-api] Russian Federation, Greenland country not coming in Google world maps

2016-03-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Akash, We identify the "Russian Federation" as "Russia". "Russian Federation" should still work, however, if you loaded `https://www.google.com/jsapi` in order to enable geocoding. Here is a jsfiddle where I use both "Greenland" and "Russian Federation" on a world map:

Re: [visualization-api] Chartwrapper, Map, infowindows and tooltips

2016-03-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Simon, I'm happy to inform you that I was able to make this change, and in the next release of Google Charts, you will be able to hide the tooltip while still showing the info window with HTML. On Fri, Mar 18, 2016 at 3:01 PM 'Simon Banton' via Google Visualization API

Re: [visualization-api] Help needed on publishing 3 charts on the same HTML Page

2016-03-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hello Fernando, Your issue is that you're including the loader.js script multiple times and calling google.charts.load multiple times. You should not include loader.js multiple times under any circumstances. However, the multiple google.charts.load call issue should be fixed in a subsequent

Re: [visualization-api] Can't get Geochart Region to show anything besides countries

2016-03-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Eric, Along with the `region` option, you also need to set the `resolution` option to something sensible. For instance, if you're trying to set `region` to be a US state, you need to set your resolution to `provinces` or `dmas`, like so: http://jsfiddle.net/3k0b6xob/ On Wed, Mar 16, 2016 at

Re: [visualization-api] Toopltips on piechart flicker on mouse over

2016-03-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Robert, You can use the `tooltip.ignoreBounds` option in conjunction with HTML tooltips to allow the tooltips to extend outside the chart area. This method should be used with caution, as it can lead to a cropped tooltip if done improperly. On Wed, Mar 16, 2016 at 6:36 PM Robert Olide

Re: [visualization-api] Candlestick - Multiple Series - Different Alignment

2016-03-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Joseph, This is done intentionally, similarly to how bars are laid out next to each other. The reasoning for this is that if it wasn't done, the candlesticks would overlap (although not in your case, since your data for each series is wildly different). I believe you can work around this

Re: [visualization-api] One or more participants failed to draw(). Help please.

2016-03-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Joshua, The new loader (the one via gstatic) does not yet support dynamic loading (specifying a class in a ChartWrapper that isn't actually explicitly loaded via google.charts.load). You need to explicitly specify all packages you use in your google.charts.load call. See this jsfiddle:

Re: [visualization-api] Help needed on publishing 3 charts on the same HTML Page

2016-03-18 Thread 'Sergey Grabkovsky' via Google Visualization API
Fernando, You can specify multiple packages in your google.charts.load function like so: google.charts.load('current', {'packages':['corechart', 'gauge']}); You should still be able to keep the multiple google.charts.setOnLoadCallback calls, but I would recommend that you combine your drawChart

Re: [visualization-api] Chartwrapper, Map, infowindows and tooltips

2016-03-18 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Simon, I looked into doing this. From a very short look into this, it appears that we do explicitly control generating titles for points on the map. I'll look into making this change, and hopefully you'll see it reflected in the next release. On Fri, Mar 18, 2016 at 1:51 PM 'Daniel LaLiberte'

Re: [visualization-api] Chartwrapper, Map, infowindows and tooltips

2016-03-15 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Simon, I would guess that this is because you use the 'old' spreadsheets URL. You should be able to use just a regular Sheets URL, copied from the address bar, like: https://docs.google.com/spreadsheets/d/{key}/edit Please change that in your example page, and I'll try again. On Mon, Mar 14,

Re: [visualization-api] Geochart (Philippines)

2016-03-14 Thread 'Sergey Grabkovsky' via Google Visualization API
You can do this by setting the 'region' option to 'PH' (the Philippines ISO-3166-2 code), and the 'resolution' option to 'provinces'. Here is an example: http://jsfiddle.net/ja635kkL/ You may use this Wikipedia page to figure out which code maps to

Re: [visualization-api] heat maps

2016-03-14 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Petar, We do not currently support heat maps. On Sun, Mar 13, 2016 at 5:12 PM Petar Bujosevic wrote: > Is there anywhere an option to project data as heat maps? > > -- > You received this message because you are subscribed to the Google Groups > "Google

Re: [visualization-api] How can I synchronize one column chart when I zoom in the other column chart? ALSO!! How can I get top of column location in column chart?

2016-03-14 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Kyle, We don't have any inherent support for drawing graphics across multiple charts. Anything I suggest here will be a hack. However, what you're asking for *is possible*! But extremely difficult. What you'll need to do is create an svg or canvas element on top of both your charts to contain

Re: [visualization-api] Discussion about Column Chart customization

2016-03-14 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, Here are answers to your questions in order: 1) In order to get rid of the spacing around the chart, you need to set your 'chartArea' options. 2) Presumably you're talking about the gridlines here? These can be gotten rid of by setting the vAxis.gridlines.count setting to 0. 3) This will

Re: [visualization-api] Chartwrapper, Map, infowindows and tooltips

2016-03-14 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Simon, When running your example, I the following error in the console: Missing query for request id: 0 Please either: a) fix this issue and reply or (better) b) Distill your example into a simple jsfiddle that we can iterate on. On Sat, Mar 12, 2016 at 6:05 PM 'Simon Banton' via Google

Re: [visualization-api] Re: Как сделать выделение сразу по всем линиям графика

2016-03-10 Thread 'Sergey Grabkovsky' via Google Visualization API
Sorry, this is not currently possible. On Thu, Mar 10, 2016 at 10:22 AM Артемий Гаврюшин wrote: > А можно ли "crosshair" задачи ширину полоски? > > четверг, 3 марта 2016 г., 15:32:33 UTC+3 пользователь Артемий Гаврюшин > написал: > >> http://c3js.org/samples/chart_area.html

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-10 Thread 'Sergey Grabkovsky' via Google Visualization API
Natarajan, As I've said in an earlier email, you should only include /jsapi if you use a GeoChart, and it doesn't appear that you do, so you should not include it at all. Remember, that with the new loader, you need to do: google.*charts*.load and google.*charts*.setOnLoadCallback. On Thu, Mar

Re: [visualization-api] Specific background colors for parts of a line charts?

2016-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Joshua, Here is a jsfiddle that I built for someone the other day: http://jsfiddle.net/qr7xLb71/ I hope it helps you get started. On Wed, Mar 9, 2016 at 2:59 PM Joshua Updyke wrote: > Daniel, > > Thank you for the fast response. Sometimes it is all about figuring out >

Re: [visualization-api] How to code an email to render a Google Chart in an email or a viable alternative.

2016-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi JPC, I'm under the impression that JavaScript execution is either severely limited or disabled in most (if not all) email clients. So a live Google Chart is out of the question. One thing that you could do is to save an image of your desired chart via getImageURI

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-08 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like you're not putting your chart code into a callback. That is, you're probably doing something like: var data = google.visualization.arrayToDataTable(...); // more chart stuff When you should be doing: ... google.charts.load(...); google.charts.setOnLoadCallback(drawChart);

Re: [visualization-api] Maps: Support for drawing markers and regions on the same map.

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
We did in fact consider layers. However, if we were to do layers, we would have to do it in a way that is applicable for all charts (so that we maintain a consistent API). One of the issues that your API design has is that it would make layers inaccessible via ChartWrapper and Dashboard. Another

Re: [visualization-api] Re: line chart unit should be in english not in german

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
The old loader has the capability to set the language based on signals like your location (although I'm not sure that it actually uses your location), so yes you're correct: these charts will look different for users in other locales. On Mon, Mar 7, 2016 at 1:03 PM Nadja wrote:

Re: [visualization-api] Re: line chart unit should be in english not in german

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
It appears to be as I've guessed. You're still using the old loader (google.load). Please follow the instructions in our documentation and let me know if it helps. On Mon, Mar 7, 2016 at 12:57 PM Nadja

Re: [visualization-api] line chart unit should be in english not in german

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nadja, Could you please post some sample code where you see this issue? On Mon, Mar 7, 2016 at 12:33 PM Nadja wrote: > Hello, > > I have a line chart. > If the numbers are very big, it is shown like this "24Tsd.". but "Tsd." is > german, isn't it? How can I change it to

Re: [visualization-api] Re: line chart unit should be in english not in german

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nadja, The image is not helpful. But without the code available, I'll attempt to guess at what's wrong. Most probably, this issue stems from specifying a language code when calling .load. The next most probable reason is that you're using google.load (instead of google.charts.load) along

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
Natarajan, *Please do not use autoload and the gstatic loader on the same page*. This can lead to issues that are very difficult to figure out. The gstatic loader is the only place where we're pushing new versions at this point. Loading jsapi as well will cause older versions to be loaded. The

Re: [visualization-api] Maps: Support for drawing markers and regions on the same map.

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nathan, We have talked internally at length about combining the different ways of rendering the GeoChart, and have thought long and hard about how to do this. We eventually chose to punt on this issue. Personally, I don't like the idea of passing an array of things to chart.draw very much,

Re: [visualization-api] Google Charts - c.getTimezoneOffset is not a function

2016-03-03 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Boris, Your issue is that you have "new" before your Date, which you don't need when using the string version (which is necessary for being able to transfer Dates via JSON). Here is a fixed example that uses the data you posted: http://jsfiddle.net/bu8g61js/1/ On Thu, Mar 3, 2016 at 4:09 PM

Re: [visualization-api] Google Charts - c.getTimezoneOffset is not a function

2016-03-03 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Pete, LineCharts should work fine with dates in any column. I'm not sure whether by "col 1" you mean the first column (indexing starting at 1), or the second column (indexing starting at 0), so here are both examples: LineChart with date for the first column: http://jsfiddle.net/53w3nph7/

Re: [visualization-api] Как сделать выделение сразу по всем линиям графика

2016-03-03 Thread 'Sergey Grabkovsky' via Google Visualization API
Then you can use the focusTarget option in conjunction with the crosshairs option. Here are some examples of how to use crosshairs: https://developers.google.com/chart/interactive/docs/crosshairs And here is my original example modified to include vertical crosshairs:

Re: [visualization-api] Как сделать выделение сразу по всем линиям графика

2016-03-03 Thread 'Sergey Grabkovsky' via Google Visualization API
I think Dan meant the focusTarget option. Is this something like what you wanted? http://jsfiddle.net/115qhga7/ On Thu, Mar 3, 2016 at 8:46 AM 'Daniel LaLiberte' via Google Visualization API wrote: > Check outthe aggregationTarget option. > > var

Re: [visualization-api] LineChart, Dual Y, line up yAxes gridlines and labels

2016-03-02 Thread 'Sergey Grabkovsky' via Google Visualization API
labels to display though. Any guesses? I changed off >> the 'current' release a bit ago so that is not it. It was working fine >> before I put a minvalue and maxvalue in for the second Y axis. >> >> On Wed, Mar 2, 2016 at 3:58 PM, 'Sergey Grabkovsky' via Google

Re: [visualization-api] Google Line Chart Stopped Working

2016-03-02 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like you are experiencing the issues caused by caching and propagation delays of our latest release. These issues should fix themselves eventually (we suspect over the next few days). In the meantime, you can workaround it by explicitly specifying a version, such as '43' or '44' instead

Re: [visualization-api] Gauge and Comparison charts intermittently disappear from my web pages?

2016-03-02 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like you are experiencing the issues caused by caching and propagation delays of our latest release. These issues should fix themselves eventually (we suspect over the next few days). In the meantime, you can workaround it by explicitly specifying a version, such as '43' or '44' instead

Re: [visualization-api] Broken Draw Multiple Charts example

2016-03-02 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like you are experiencing the issues caused by caching and propagation delays of our latest release. These issues should fix themselves eventually (we suspect over the next few days). In the meantime, you can workaround it by explicitly specifying a version, such as '43' or '44' instead

Re: [visualization-api] Draw dendogram

2016-03-02 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Vani, We don't currently have a chart of this type. On Wed, Mar 2, 2016 at 3:41 AM vani reddy wrote: > Hi Team, > > > I have a requirement to draw Dendogram in my project.Please see the > attached screenshot of the Dendogram (if in case you don't know how it >

Re: [visualization-api] I am getting an error "Cannot read property 'prototype' of null"

2016-03-02 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, You are experiencing the issues caused by caching and propagation delays of our latest release. These issues should fix themselves eventually (probably in a few days). In the meantime, you can workaround it by explicitly specifying a version, such as '43' or '44' instead of 'current' or

Re: [visualization-api] Material line chart - series - points visible

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
This is not implemented yet. Please refer to the Material Chart feature tracking bug to determine if a feature is supported. On Tue, Mar 1, 2016 at 9:17 AM Allen Moore wrote: > I have a material line

Re: [visualization-api] Google Charts - c.getTimezoneOffset is not a function

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Pete, Your JSON is not syntactically valid. Having "2016-03-02" as a raw value is not proper. Please refer to our Dates and Times documentation page for guidance on how to use dates properly. On Tue, Mar 1, 2016 at 8:15 AM

Re: [visualization-api] Re: Legend text overlapping in column chart

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Mahesh, This is a known issue when you attempt to render a chart in an invisible div. If this is what you are doing, please do not do that, and render the chart only when the div becomes visible. If you are not doing this, please post back with a more complete code sample so that we may

Re: [visualization-api] Re: Проблемы с отображением графиков

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, It sounds like you are experiencing the issues caused by caching and propagation delays of our latest release. These issues should fix themselves eventually. In the meantime, you can workaround it by explicitly specifying a version, such as `'43'` or `'44'` instead of `'current'` or

Re: [visualization-api] Some Google charts are not displaying on my browser (Chrome 48.0.2564.116)

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, It sounds like you are experiencing the issues caused by caching and propagation delays of our latest release. These issues should fix themselves eventually. In the meantime, you can workaround it by explicitly specifying a version, such as `'43'` or `'44'` instead of `'current'` or

Re: [visualization-api] Geochart HTML tooltip

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hey Nick, There's no way to use google.visualization.events.addListener to listen to event in the HTML tooltip, but you can certainly embed actual links in your HTML tooltip. However, you'll also have to set the tooltip.trigger option to 'selection'. Here's an example:

Re: [visualization-api] Geochart type error

2016-03-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nick, It looks like you forgot to include the /jsapi script on your page. For the time being, it's still necessary to enable geocoding on the GeoChart (which is enabled via google.load). Let me know if that doesn't fix your issue. On Mon, Feb 29, 2016 at 8:02 PM wrote:

Re: [visualization-api] How can I synchronize one column chart when I zoom in the other column chart? ALSO!! How can I get top of column location in column chart?

2016-02-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Kyle, 1. If you're using explorer mode, there is sadly still no way to synchronize the zoom levels of multiple charts. If you are not using explorer mode, please gives us an example of how you're doing zoom, as there may be hope for you yet! 2. You can use the getChartLayoutInterface API in

Re: [visualization-api] My Chart doesn't appear while combining both bar and pie chart

2016-02-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Tom, I answered your question in your other thread. In the future, I think one post per issue will be enough =) There's a much more detailed explanation in my other post, but the biggest issue you have is that you have to drawChart functions. On Fri, Feb 26, 2016 at 8:07 AM tom jose

Re: [visualization-api] My Chart doesn't chart appear while combining both bar and pie chart

2016-02-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Tom, You have a few problems with your code: 1. Specifying the values '1', '1.1', and '1.0' is no longer valid for the new loader. The new equivalent value for 1.0 is 'current', the equivalent value for 1.1 is 'upcoming', and there is currently no equivalent value for '1'. 2.

Re: [visualization-api] Re: automatic adaption of the width of the graph area depending on the amount of data points

2016-02-29 Thread 'Sergey Grabkovsky' via Google Visualization API
The "explorer" option is what will provide the "drag-to-move" functionality. You can find the documentation for how to use explorer mode on the page of any chart that supports it, for example the line chart . Here's a simple

Re: [visualization-api] Data policies

2016-02-25 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, I did a fairly thorough writeup of when data may be sent outside of the network here . I believe that that question in the FAQ is more pertinent to our deprecated image charts, which render a chart on the server, and therefore

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-24 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Natarajan, You should be able to use html2canvas to save the charts as images, as the stackoverflow post suggests. You may be aware that some of our charts (like ComboChart and the rest of the charts provided by the 'corechart' package) support getImageUri, which will basically allow you to

Re: [visualization-api] automatic adaption of the width of the graph area depending on the amount of data points

2016-02-23 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, The Line Chart will always scale your data to fit the chart. So if you have a lot of data, then it will just all be squished into the chart, instead of having a certain part no longer be visible (Column Charts have slightly different behavior). If that's the behavior you want, then you will

Re: [visualization-api] GeoChart intermittent Problem

2016-02-23 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, You might be experiencing this bug . We recently released version 44 , which should fix this issue. Keep in mind that we recently changed the way to

Re: [visualization-api] Kagi chart?

2016-02-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Jose, Out of the box, Google Charts does not support Kagi charts. However, Stepped Area Charts look pretty close, so maybe you could repurpose those. On Sat, Feb 20, 2016 at 6:28 AM Jose

Re: [visualization-api] Customize Tooltips for Trendlines

2016-02-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi T.J., Unfortunately, you can't do a custom tooltips for trendlines yet. You can customize a tooltip for the whole category, and include the trendline tooltip in that, but you'd need to figure out the tooltip text yourself. On Sat, Feb 20, 2016 at 12:45 AM T.J. Breshears

Re: [visualization-api] How to have two x columns and one y column in charts?

2016-02-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Brittany, I'm not sure I fully understand what you're trying to do. Scatterplots, by definition, do not have lines between them (although our scatter chart can do this). Also, if you're rendering a scatterplot, I don't understand why it matters that something is an x axis or a y axis, but you can

Re: [visualization-api] How to have two x columns and one y column in charts?

2016-02-19 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like it might be better to have a Bar/Column Chart your Elevation be the x axis, and each type of stress would be a series. Something like this perhaps? Is there a reason that this doesn't work for you? On Fri, Feb 19, 2016 at 1:17 PM Brittany Sattler

Re: [visualization-api] Swiss currencies

2016-02-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, We don't actually support the 'ch' locale in Google Charts. Your best bet to get this working today would probably be a custom formatting string. On Fri, Feb 19, 2016 at 9:55 AM Gibono wrote: > Hi, > I'm trying to display an amount of swiss francs, but I don't find the >

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-19 Thread 'Sergey Grabkovsky' via Google Visualization API
So I don't see anything obviously wrong with your code. Could you link to a page on which you're experiencing the error? If you're uncomfortable sharing the link over the forum, feel free to send me a private message. On Fri, Feb 19, 2016 at 8:47 AM natarajan govindavel

Re: [visualization-api] How to have two x columns and one y column in charts?

2016-02-19 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Brittany, It sounds like what you want is to change the orientation of the chart. Could you please elaborate on your use case? Give an example of your data, perhaps? On Thu, Feb 18, 2016 at 9:07 PM Brittany Sattler wrote: > I am new to google sheets and can't figure

Re: [visualization-api] need help adding range to semicircle donut chart?

2016-02-18 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, It sounds like the Gauge Chart is what you're actually looking for. To answer your question directly, you *could* abuse the PieChart and make it do what you want, but you wouldn't be able to get the percentage ticks, nor the

Re: [visualization-api] Dynamically add rows to google spreadsheet - response.getDataTable() function is used

2016-02-18 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Joseph, I just tested this myself, and things appear to work fairly reasonably. Here is a jsfiddle example of me querying a spreadsheet, using response.getDataTable(), drawing it, adding a row to the data, and then drawing in another Table: http://jsfiddle.net/3L8fck9f/ On Thu, Feb 18, 2016

Re: [visualization-api] Geo Map disputed areas

2016-02-17 Thread 'Sergey Grabkovsky' via Google Visualization API
Sadly, our architecture does not work that way, and it is currently non-trivial to update our map data for the GeoChart and GeoMap. I don't have any estimates for when we might update the data. On Wed, Feb 17, 2016 at 12:34 PM Dmitry wrote: > In google maps made of the

Re: [visualization-api] Data ownership

2016-02-17 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Joey, If you are using interactive Google Charts, no data is sent to Google, and Google *definitely does not acquire ownership* any data. There have been a few similar questions asked recently. Here's one where I provided a fairly detailed response

Re: [visualization-api] Geo Map disputed areas

2016-02-17 Thread 'Sergey Grabkovsky' via Google Visualization API
Because the domain "IN" has been implemented for a while, and unlike Russia, India has laws that make not displaying certain territories as part of India illegal . On Wed, Feb 17, 2016 at 11:59 AM Dmitry

Re: [visualization-api] JSON data parse error

2016-02-17 Thread 'Sergey Grabkovsky' via Google Visualization API
Query API loaded, and I know there is a jQuery.parseJSON > method but I don't know how it works. > > Thanks for your assistance, > > Nick > > On Wed, Feb 17, 2016 at 2:54 PM, 'Sergey Grabkovsky' via Google > Visualization API <google-visualization-api@googlegroups.com>

Re: [visualization-api] JSON data parse error

2016-02-17 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nick, Are you trying to use the google.visualization.Query to load the JSON file? Or are you using XHR or jQuery to load it? On Wed, Feb 17, 2016 at 9:51 AM Nick Dunbar wrote: > Any thoughts on this one? I appreciate this is XML but I am trying to > avoid having to

Re: [visualization-api] gstatic.com

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Logan, gstatic.com serves static content for Google . I don't believe that gstatic serves any ads, but I can't promise that. There is no configuration where you can "call the .swf

Re: [visualization-api] How can i add a line to a material Design bar chart?

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Willem, This is currently not possible for Material Charts, because it is not implemented. See this bug for an exhaustive list of unimplemented options/features. On Tue, Feb 16, 2016 at 1:07 PM Willem van der plaat

Re: [visualization-api] Cannot Change Background of the Google Chart

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
Glad to hear that you figured it out! On Tue, Feb 16, 2016 at 10:47 AM Baris Sarac wrote: > You were right. I copied and pasted your code on top of mine and found out > that even though in the coding application is not showing, there was a > character. Thank you! > > >

Re: [visualization-api] Re: А есть ли инструкция на русском языке?

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
К сожалению, наша документация только написана на Английском языке. Если у вас какой-то конкретный вопрос, я могу попытаться вам помочь. On Mon, Feb 15, 2016 at 10:18 AM tronik X wrote: > так и не понятно > > -- > You received this message because you are subscribed to the

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
Natarajan, We've seen a number of bugs with multiple Material charts not rendering on the same page. I was under the impression that these issues were all fixed (presuming you're using the latest Charts code). It is highly likely that the issues are due to *how* you're using Charts, and not due

Re: [visualization-api] BackgroundColor fill none

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Mark, As documented on our BarChart documentation page , in order to use the Material Bar chart with the old options (which is the only documented way of using it at the moment), you have to call

Re: [visualization-api] Noob question

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
ou mind taking a screenshot of your >>>> chrome window? >>>> >>>> What operating system are you using? >>>> >>>> On Thu, Feb 11, 2016 at 10:08 AM Susannah Jones <marysj...@gmail.com> >>>> wrote: >>>> >>&

Re: [visualization-api] Noob question

2016-02-12 Thread 'Sergey Grabkovsky' via Google Visualization API
e you using? >> >> On Thu, Feb 11, 2016 at 10:08 AM Susannah Jones <marysj...@gmail.com> >> wrote: >> > I did save it as both an .htm and .html file. I'm not sure why it would be >>> acting this way. >>> >>> On Thu, Feb 11, 2016 at 10:

Re: [visualization-api] Noob question

2016-02-11 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Susannah, Did you save the file with a ".html" extension? A lot of operating systems (namely windows) hide the extension, making it difficult to change. This means that if you create a text file called "test", it's actual filename is "test.txt", where windows hides the .txt part. If you

Re: [visualization-api] Noob question

2016-02-11 Thread 'Sergey Grabkovsky' via Google Visualization API
ing this way. > > On Thu, Feb 11, 2016 at 10:05 AM, 'Sergey Grabkovsky' via Google > Visualization API <google-visualization-api@googlegroups.com> wrote: > >> Hi Susannah, >> >> Did you save the file with a ".html" extension? A lot of operating >>

Re: [visualization-api] Material Line Chart dataset question

2016-02-08 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Allen, This should be possible with the regular Material Line Chart (or even with the Classic Line Chart). You will just need to leave nulls where the series doesn't have data. On Mon, Feb 8, 2016 at 9:23 AM Allen Moore wrote: > I need to display a pretty basic

Re: [visualization-api] Add Days row to timeline and show full time every 30 minutes

2016-02-08 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Daniel, There is currently no way to put the time axis on the top of the chart. However, you can change the axis formatting via the hAxis.format option. Here is an example: https://jsfiddle.net/qbx21yje/ On Mon, Feb 8, 2016 at 6:44 AM Daniel Borchers wrote: > Hi, > >

Re: [visualization-api] horizontal scrolling in Material Line chart...

2016-02-08 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Allen, Sadly, this is not simple to resolve. This issue stems from the fact that Material Charts were built from scratch, rather than on top of the existing charts, and are therefore missing numerous features. We have a tracking bug for this, which you can find here:

Re: [visualization-api] Retieving Data from Google Spreadsheets

2016-02-08 Thread 'Sergey Grabkovsky' via Google Visualization API
> > > > > > > > > > On Mon, Feb 8, 2016 at 4:14 PM, Red Star <redstarfr...@googlemail.com> > wrote: > >> Hi Sergey >> >> Thanks for that. I have got it working - double quotes were the trick! >> >> I now need

Re: [visualization-api] Chart Legend Issue

2016-02-04 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Madan, At first glance, it seems like you found a bug. However, this looks very familiar to a bug that we've already seen: drawing a chart in a hidden div. When a chart is rendered in a div that isn't visible, text measurement won't work correctly, which will affect how the chart is laid out.

Re: [visualization-api] Cannot Change Background of the Google Chart

2016-02-04 Thread 'Sergey Grabkovsky' via Google Visualization API
Ok, I'd say that if you copy/pasted that code into your email, then that space appeared for a reason. The option "chartArea.backgroundColor" doesn't work for Pie Chart, but top-level backgroundColor does. jsfiddle and screenshot: [image: Screen Shot 2016-02-04 at

Re: [visualization-api] Cannot Change Background of the Google Chart

2016-02-04 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Baris, Your property has a space before it, as in you're writing '_backgroundColor' (with a space instead of an underscore), where you should be writing 'backgroundColor'. Here is an example of your options working perfectly: http://jsfiddle.net/nLf64qga/ On Thu, Feb 4, 2016 at 11:27 AM Baris

Re: [visualization-api] Google Line Chart - Starting Area - Going forward and backwards

2016-02-02 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Arakus, You could do something like setting the viewWindow of your axis to only display the first 5 points. That would probably be the most straightforward way to get what you want, unless I'm misunderstanding the problem. On Tue, Feb 2, 2016 at 6:36 AM Arakus Hertl

  1   2   3   4   5   6   7   >