Re: [visualization-api] Using controls without dashboard?

2017-03-09 Thread 'perspektive42' via Google Visualization API
Hi, I tried it, and it didn't work: slider.draw(data, options, {'lowValue': yearRange.min, 'highValue': yearRange.max}); Both slider thumbs still start at the minimum value. Am Freitag, 10. März 2017 01:00:33 UTC+1 schrieb Daniel LaLiberte: > > Ah, there is a secret third argument for

Re: [visualization-api] display glitch in column chart on chrome when very large number of intervals

2017-03-09 Thread Suzanne Paley
Restarting the browser seems to have helped. Sorry to bother you. Suzanne On Thu, Mar 9, 2017 at 9:08 PM, 'Daniel LaLiberte' via Google Visualization API wrote: > I don't see a problem on my mac (10.12.3) in chrome (56.0.2924.87). I > can't imagine

Re: [visualization-api] display glitch in column chart on chrome when very large number of intervals

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
I don't see a problem on my mac (10.12.3) in chrome (56.0.2924.87). I can't imagine you would need to upgrade your mac os. Could it be a caching issue? Restart your browser maybe? On Fri, Mar 10, 2017 at 12:02 AM, Suzanne Paley wrote: > If a column chart has a very

[visualization-api] display glitch in column chart on chrome when very large number of intervals

2017-03-09 Thread Suzanne Paley
If a column chart has a very large number of intervals, I'm seeing a display glitch using Chrome (v.56.0.2924.87) on my Mac (OSX v.10.11.6). I don't see the same issue using Firefox on my Mac, nor using Chrome on Linux. Using the example at https://jsfiddle.net/nq9sngp0/2/, I've attached the

[visualization-api] i created bubble chart like below in the attachment. i want name each quadrant is there any way to do that. TIA.

2017-03-09 Thread suneel p
i created bubble chart like below in the attachment. i want name each quadrant is there any way to do that. TIA. -- 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

Re: [visualization-api] Using controls without dashboard?

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Ah, there is a secret third argument for draw which is the state object. On Thu, Mar 9, 2017 at 5:20 PM, 'perspektive42' via Google Visualization API wrote: > Thanks, I got it working, almost. How do you set the state (current > min/max value) of a

Re: [visualization-api] Using controls without dashboard?

2017-03-09 Thread 'perspektive42' via Google Visualization API
Thanks, I got it working, almost. How do you set the state (current min/max value) of a NumberRangeFilter? The control doesn't seem to have a setState() method. Am Donnerstag, 9. März 2017 21:51:56 UTC+1 schrieb Daniel LaLiberte: > > You can treat a control like a chart, and draw it given

Re: [visualization-api] Using controls without dashboard?

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
You can treat a control like a chart, and draw it given data. If you create the control yourself, rather than via the ControlWrapper, then do e.g. myControl.draw(mydata, myoptions). If you create it with the ControlWrapper, then treat it like a ChartWrapper:

Re: [visualization-api] Using controls without dashboard?

2017-03-09 Thread 'perspektive42' via Google Visualization API
Hi, It seems I still need a dashboard, otherwise there is no way to bind the control to a DataTable. Here's my try: google.charts.setOnLoadCallback(function(){ var container = document.createElement("DIV"); container.id = "slider"; controlUI.appendChild(container);

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

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Gantt was changed from GanttChart to Gantt, but I forget exactly when. To get the latest version, you need to switch from google.load() to google.charts.load(). See https://developers.google.com/chart/interactive/docs/basic_load_libs#update-library-loader-code Most charts start with

Re: [visualization-api] Unable to load other charts while using gauge chart.

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
See https://developers.google.com/chart/interactive/docs/basic_multiple_charts And make sure you are loading both 'gauge' and 'corechart'. google.charts.load('current', {'packages':['corechart', 'gauge']}); On Thu, Mar 9, 2017 at 2:10 AM, Prateek Kumar wrote: >

Re: [visualization-api] High data point optimization

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Several hundred data points will probably not be an issue. Loading the library itself is probably still more of an overhead than drawing a chart. But several thousand data points starts to get noticeably slow, especially if you don't disable interactivity and enable animation. On Thu, Mar 9,

Re: [visualization-api] Re: Problems loading Google Charts Examples - Error in JS on Google website

2017-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Thanks for the notice, Jan. This problem did sound like it might be related to the nb language issue that was posted elsewhere. On Thu, Mar 9, 2017 at 6:01 AM, Jan Welten wrote: > This is reported and is related to the language settings in your browser. > Will be fixed. >

[visualization-api] Annotation Color Does not Match bar Color (it is automatically darker)

2017-03-09 Thread Siddharth Dalal
In a bar chart, I'm adding bars of different colors based on the values chartDataTable.addRow([key, percentChange, 'color:' + (percentChange < 0 ? downColor : upColor), percentChange]); And The bars are drawn the correct colors. However the annotations are not: annotations: {

[visualization-api] High data point optimization

2017-03-09 Thread Marc Davies
Hi guys, im trying to implement a simple line chart for a website I am developing. Since im new to this i was wondering how well optimised is this API to say use several hundred data points? for example say im trying to plot a number over 365 days. Would this API be able to easily enough handle

[visualization-api] Re: Problems loading Google Charts Examples - Error in JS on Google website

2017-03-09 Thread Jan Welten
This is reported and is related to the language settings in your browser. Will be fixed. https://groups.google.com/forum/?hl=en#!topic/google-visualization-api/1_rl8W4Nwl4 -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To

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

2017-03-09 Thread Snehadeep Mohite
*I am trying to load 'Gannt' chart package using visualization. * google.load('visualization', '1.0', {packages: ['charteditor', 'sankey', 'gantt'], callback: loadEditor}); But, I am getting below error, *Uncaught Error: Module: 'visualization' with package: 'gantt' not found!* and *what is