Re: [visualization-api] Re: Chart range filter - Custom toolol tip and X-axis ticks

2015-01-14 Thread 'Daniel LaLiberte' via Google Visualization API
Since your hAxis is date or datetime, I hope your hAxisAry is an array of dates. There is an extra comma before one of your curly brackets that might be a problem for some browsers. Since your title option is at least making a difference, I would guess you are providing the ui.chartOptions in the

Re: [visualization-api] Switch between Line Chart and Pie Chart ?

2015-01-15 Thread 'Daniel LaLiberte' via Google Visualization API
Matthew, The nature of your question suggests you are not necessarily thinking about Google Charts, which is the subject of this forum, but visualizations more broadly. To elaborate on what Sergey said, the Google Charts LineChart could draw the same data as you could show in a PieChart. But bec

Re: [visualization-api] Invert Bubble Chart Y-Axis

2015-01-15 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Sergey, Have you tried vAxis: { direction: -1 } ? See https://developers.google.com/chart/interactive/docs/gallery/bubblechart On Thu, Jan 15, 2015 at 7:11 PM, 'Sergey Mikhaylov' via Google Visualization API wrote: > Hi Visualization team. > > Could you help me to do the following: > I need

Re: [visualization-api] Bar chart not drawing - when using function called from button clicks

2015-01-17 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Paul, Inspecting your code, it looks like the main problem is that you are calling google.load twice, and after the first one finishes, your onLoadCallback functions will all be called, but the bar chart code has not yet been loaded. Combine them in to one google.load call, and you should be g

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-01-17 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Croix, I expanded on your jsfiddle to give an outline of what you need to do to select different data tables: http://jsfiddle.net/dlaliberte/M9YrV/1/ Note that the code doesn't work because not all the blanks are filled in. But it should give you an idea how to proceed. On Sat, Jan 17, 2

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-01-18 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Croix, Your problem now is that the dataCap function is only defined inside your drawChart function, so it is not visible outside at the level of the select element. There are various ways to fix this, but it might be easiest for you to do the following: - Move the function dataCap() {} o

Re: [visualization-api] Pie chart not showing data from database

2015-01-19 Thread 'Daniel LaLiberte' via Google Visualization API
It would be best to find out what ends up in your browser. View the source of the page, or go to your browser's javascript console, or development tools (in chrome) and find the source that way. Just a guess, but it looks like your parameter values are quoted, so they will end up as strings rathe

Re: [visualization-api] google charts like bar and line are not loading,this is what i get in console

2015-01-21 Thread 'Daniel LaLiberte' via Google Visualization API
Tushar, I don't understand your report. Can you give a link to a page that demonstrates the problem you are seeing? On Wed, Jan 21, 2015 at 9:37 AM, Tushar Prithviraj < tshrprithvir...@gmail.com> wrote: > (anonymous function)VM1930:4 > window.google.window.google.loader.window.google.loader.eva

Re: [visualization-api] Charts not loading...any updates to the API

2015-01-21 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
We finally pushed out the v41 candidate release, which you are probably getting by loading "1.1". Can you look in your javascript console to see if there are any errors reported there? Better, can you give us a link to the page? On Wed, Jan 21, 2015 at 10:31 AM, Sudhir Kesharwani < sudhir.keshar

Re: [visualization-api] Google Charts Dynamic data for wheather

2015-01-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Fufu, By dynamic graphs, do you mean that the data is fetched from some other site? Or do you mean that it gets updated automatically and periodically without the user having to reload the page? You can fetch data from spreadsheets, for example. See https://developers.google.com/chart/intera

Re: [visualization-api] Charts not loading...any updates to the API

2015-01-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Scott, can you give us a link to a page that demonstrates the error you are seeing? Thanks. The console error message is a clue that there is some problem, but we often can't tell what the problem is unless we can see it in action and determine what happened that led up to the problem. On Thu, J

Re: [visualization-api] Re: Charts not loading...any updates to the API

2015-01-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Craig, I see in the page your pointed to that the container div does not have a height. I wonder if it will work for you in IE if you do specify the height. We'll try to provide a fix in any case, but at least you would have a workaround. You might also try the new replacement AnnotationChart, w

Re: [visualization-api] Re: Charts not loading...any updates to the API

2015-01-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks, Craig, for trying my suggestions. The fact that you got the same error involving JSON when you switched to the AnnotationChart suggests you might be loading cached old code, perhaps mixed with some new code. But since Scott got the same error this coincidence of errors seems improbable.

Re: [visualization-api] ComboChart displays too much

2015-01-25 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
You can just use discrete values instead of actual date values. Convert your dates to strings before putting them in the data table, and the chart will not know they came from dates. On Sun, Jan 25, 2015 at 2:40 PM, Tomasz Piwniuk wrote: > Hi, I have following issue: in my data I have values fo

Re: [visualization-api] Annimate Scatter Plot, in Time

2015-01-25 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Marcin, The kind of animation you want to do is not built in to the Google Charts capabilities given one data table. The Motion Chart ( https://developers.google.com/chart/interactive/docs/gallery/motionchart) is close but it won't animate the line chart. Instead, to animate changes in Google Ch

Re: [visualization-api] Annimate Scatter Plot, in Time

2015-01-26 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
that was an > option! My next move was to graph a series of Crude Oil Inventory over the > same period. That is, I was envisioning a single line chart that adds 1 > data point at a time to give it motion... > > > > On Sun, Jan 25, 2015 at 7:14 PM, 'Daniel LaLiberte'

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-01-26 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Bernd, I can usually address the specialized questions here pretty quickly, but I strive to also be a generalist. First of all, your drawChart() function is calling all three queries, one after the other, and handling them with the same function, handleQueryResponse, which then takes the data

Re: [visualization-api] Re: Charts not loading...any updates to the API

2015-01-26 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Scott and Craig, I now have a way of reproducing the problem you are seeing loading 1.1, though I am still not sure why it works sometimes and not others. Seems it should fail always, and for several other IE browser versions, though not for IE 11. I also see the source of the problem (the us

Re: [visualization-api] Latest release candidate (as 26thJan 2015)

2015-01-27 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks for your compliments and bug report. I just tried bubble chart with 1.1 and it seems to work for me. I modified the bubble chart example from the docs to load 1.1: http://jsfiddle.net/dlaliberte/nw441j4c/ Does this work for you? If it fails in the same way, which browser and platform are

Re: [visualization-api] Can I do to draw the minor axis?

2015-01-27 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi 아르바이트신 What do you mean by the minor axis? There is a horizontal axis also called the x axis, where the position of domain values is determined. And there is a vertical axis, also called the y axis, where the position of 'target' values is determined. Sometimes the axis where domain values ar

Re: [visualization-api] Latest release candidate (as 26thJan 2015)

2015-01-27 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Bryan, We do appreciate that you are testing with 1.1 so that we don't find out about problems until it is too late - I'd much rather patch the ongoing release than roll it back. If you can point to the page, we can figure out what data is given to the chart. Or if you could change your code to

Re: [visualization-api] Latest release candidate (as 26thJan 2015)

2015-01-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Bryan, Well, the problem appears to be the startup animation. For BubbleChart, I had to do some special hacks to make it work at all, and they were not sufficient for your particular case. Disabling the startup animation allows the rest of your chart to be drawn, as you can see in this jsfid

Re: [visualization-api] Re: select handler - on chart - to do a jquery ajax call (or equivalent)

2015-01-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Glad to hear you got it working. We are not able to offer much help regarding jQuery or coldfusion, so it is good that you figured it out, and posted your update. You might help others with similar issues. On Wed, Jan 28, 2015 at 3:17 PM, SkyWalker wrote: > Easy fix. Just had to assign the cf

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-01-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Michael, Yes, the v41 release candidate has been live for about a week, and an update that I pushed out earlier this week, just before the blizzard, is also live. The update fixed a problem with PieCharts, and added an option to AnnotationCharts. There will be at least one more update, fixing a

Re: [visualization-api] Google Chart for Python stand alone application

2015-01-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Prerana, Using Google Charts in a stand-alone app is unlikely to work for you, since it depends on running within a web browser page. But there are some charts you could generate server-side using the Image Charts service: https://developers.google.com/chart/image/docs/gallery/chart_gall On We

Re: [visualization-api] Branding in annotation charts

2015-01-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Nick, You can still style unnamed elements in a couple different ways.If you want to set the background color to transparent for *every* div under your #chart_div, do: #chart_div div { background-color: transparent; } And if you want to specify the background image for just the top leve

Re: [visualization-api] Re: Charts not loading...any updates to the API

2015-01-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Scott, if you need to have it work like before, you can switch to loading 1.0. Once 1.1 is working well enough, it will be rolled over to become 1.0, and a new 1.1 will be created for the next release cycle. There is no way to go back to earlier versions, at least not with the way releases are cu

Re: [visualization-api] vertical axis values as interval for google charts

2015-01-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
We don't have any direct support for ranges of tick values as you show in your image, but you can create that effect by using the explicit ticks option with both a value and a formatted value for each tick. E.g. var options = { vAxis: { ticks: [ { v: 30, f: "300K - 500K" },

Re: [visualization-api] Re: Charts not loading...any updates to the API

2015-01-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Jun, I am working on a fix for this problem (the JSON symbol should not be used directly, at least for some IEs) so it will be useful to have you test it again before we roll 1.1 over to 1.0 in a couple weeks. Watch this list for updates. Thanks. On Thu, Jan 29, 2015 at 4:11 PM, Jun Yamog w

Re: [visualization-api] Re: Compute Difference

2015-01-30 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Aman, Despite the lack of details on this in the docs ( https://developers.google.com/chart/interactive/docs/gallery/diffchart) you can do a diff column chart with multiple series. See this example: http://jsfiddle.net/dlaliberte/w026kqon/ On Fri, Jan 30, 2015 at 2:32 AM, aman singla wrote:

Re: [visualization-api] Branding in annotation charts

2015-01-30 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Nick, Here is an example of putting a background image behind the whole chart that works for me at least in Chrome: http://jsfiddle.net/dlaliberte/mkxsf680/ Most charts will be easier than the AnnotationChart since that one uses lots of HTML to layout the components, and each component require

Re: [visualization-api] Clicking error

2015-01-30 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
In the documentation for cssClassNames at https://developers.google.com/chart/interactive/docs/gallery/table it only talks about a single class name for each property, but this used to work, up until the last release, and we'll be able to fix it again. On Fri, Jan 30, 2015 at 9:03 AM, Michał Sykut

Re: [visualization-api] Material Line Charts options not working

2015-01-31 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Marco, Not all the old options work in the new charts yet. If you want the new style with the old charts, you can try the 'theme': 'material' option. On Sat, Jan 31, 2015 at 6:24 AM, Marco Natalini wrote: > Hello > I'm trying to use new Material Chart version by loading version 1.1 of the > li

Re: [visualization-api] Google Visualization Area Chart not Shaded

2015-02-02 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Michael, You had an areaOpacity option set to 0. That'll do it. See http://jsfiddle.net/dlaliberte/rooj6Lex/ On Mon, Feb 2, 2015 at 5:20 PM, Michael Dorfman wrote: > Hi Sergey, > > I just tested with the seriesType of "area" and it looks exactly like a > series of type "line". When I try

Re: [visualization-api] Google Visualization Area Chart not Shaded

2015-02-02 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ahh, network problems here, perhaps due to the weather. On Mon, Feb 2, 2015 at 7:43 PM, Daniel LaLiberte wrote: > Hi Michael, > > You had an areaOpacity option set to 0. That'll do it. See > http://jsfiddle.net/dlaliberte/rooj6Lex/ > > On Mon, Feb 2, 2015 at 5:20 PM, Michael Dorfman > wrote:

Re: [visualization-api] Annotation Timeline / Text issue

2015-02-03 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Jahn, Using the AnnotationChart instead of the AnnotatedTimeline should be as easy as just switching the package that you load, and the chart that you create. The same data and options should be supported. We are not doing any more work on the AnnotatedTimeline chart, so whatever you find in

Re: [visualization-api] loading charts asynchronously

2015-02-03 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The default for ajax calls is asynchronous, if you take off the async: false, you will have to provide a callback function that will be called when the ajax response is finally returned. We should include an example with the asynchronous callback, but it goes like this (modified from the jQuery d

Re: [visualization-api] loading charts asynchronously

2015-02-03 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Dang.. gmail's editor makes it too easy to Send before ready. Anyway, inside the done() function, you would do the rest of your chart drawing. You would get the response object from the first argument to the done() function. There might also be an error condition to look for, which you can handle

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-02-03 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Bernd, You have a syntax error on line 8 - your quoted "2014" is missing a quote. Then, your dataCap function, having the same name as the dataCap variable, is a problem since the function will replace the variable value. Change it to a different name, like changeDataCap(). Like so: var dat

Re: [visualization-api] Relationship between ChartWrapper and Material Design

2015-02-03 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Nicholas, The API design for Material Charts is not yet complete. Many more things are in the works, and compatibility with the ChartWrapper will likely be part of those plans. In the short term, your users may be happy to get a lite version of the material design by using the option { theme: 'm

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ali, this thread has been about GWT related issues. Are you using GWT? Can you give us a link to the page where you are seeing this problem? Thanks. On Feb 4, 2015 7:20 AM, "Ali Akhtar" wrote: > Hey guys, > > Any update on this? I'm also getting the 'hx is not defined' error for pie > chart in c

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
7;hX' error. However, switching to 1.1 fixes this issue. > > This is in development right now, so I don't have a link for you, but I > can paste the code if you'd like. > > On Wed, Feb 4, 2015 at 6:56 PM, 'Daniel LaLiberte' via Google > Visualization API w

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
nt download version > is 1.1.2 but the maven is still on 1.0.8 > > On Wed, Feb 4, 2015 at 7:36 PM, 'Daniel LaLiberte' via Google > Visualization API wrote: > >> Since switching to 1.1 fixes the issue, then you are in luck since that >> will become 1.0 in a week

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Basically we can't do the update without some other things being updated as well, so we'll have to wait. On Wed, Feb 4, 2015 at 9:48 AM, Ali Akhtar wrote: > What kind of issues? > > On Wed, Feb 4, 2015 at 7:46 PM, 'Daniel LaLiberte' via Google > Visualization

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
, Ali Akhtar wrote: > Are you talking about the maven update? > > On Wed, Feb 4, 2015 at 7:59 PM, 'Daniel LaLiberte' via Google > Visualization API wrote: > >> Basically we can't do the update without some other things being updated >> as well, so we'l

Re: [visualization-api] Annotation Chart / Suggestions

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Jahn, I agree that the highlighting of annotation markers is not sufficient, and we need to add some more style options for that. I'll be adding an auto scrolling capability to the annotation list. Other ways of showing annotations are possible, such as your pop-up idea, and we will have more op

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
to > download the zip and manually install the 1.1.2 jar to maven. > > On Wed, Feb 4, 2015 at 8:30 PM, 'Daniel LaLiberte' via Google > Visualization API wrote: > >> I'm talking about gwt-visualization that you download from this list: >> https://code.googl

Re: [visualization-api] Re: PIE Chart issues in IE

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
possibly send a > patch)? > > On Wed, Feb 4, 2015 at 9:31 PM, 'Daniel LaLiberte' via Google > Visualization API wrote: > >> Actually, version 1.1.2 is old, and needs to be updated. The issues >> discussed in this thread involve the inconsistency with that libr

Re: [visualization-api] Google Chart Calendar

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
One more issue is bound to come up. Your date month numbers will appear to be off by one, but month numbers are based on 0 (in JavaScript and most other languages), so you will actually want e.g. "Date(2013, 11, 2)", for December 2, 2013. On Wed, Feb 4, 2015 at 12:14 PM, 'Sergey Grabkovsky' via G

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-02-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hey Bernd, did you see my response in another thread: https://groups.google.com/forum/#!topic/google-visualization-api/ixgrUl0NX-8 On Wed, Feb 4, 2015 at 2:09 PM, Bernd wrote: > Hi Daniel, > > I thought I had an elegant solution with a selection in the query part of > the draw function (see code

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-02-05 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Tong, Your case might be a little different, depending on what your drawChart function does. The alert will allow other asynchronous processes to continue while it waits for the user to respond. That might be enough of a clue to figure it out. If not, post a link to your page, or copy/paste your

Re: [visualization-api] Using html select to change what data is plotted on google chart

2015-02-05 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
dMessage()); > return; > } > var data = response.getDataTable(); > var chart = new > google.visualization.ColumnChart(document.getElementById('columnchart')); > var options = { >width:1400, > height:500, > hAxis: { >

Re: [visualization-api] Using jsapi with google maps JavaScript API

2015-02-09 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The empty script is need only because your first script line to load jsapi is not actually closed. The "/" at the end of the tag doesn't work, and so the script tag will eat up all the content until if finds a proper closing script tag: . Yes, it is not obvious, and we wrestled with a similar cas

Re: [visualization-api] Multiple Tables & Charts From a Single MySQL Query? Possible?

2015-02-09 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Dom, I tried going to the page you linked to, but got a couple rather severe warnings before it continued loading: *Warning*: include(functions/shortalerts): failed to open stream: No such file or directory in */home/content/48/10114148/html/wp-content/themes/ifeaturepro5-child03/header.php* on

Re: [visualization-api] Anyone been getting odd data presented the last few days?

2015-02-10 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Dan, Are you still seeing this kind of behavior? That one value of 16 does appear to be out of place, but we can't tell for sure without looking into the details. If you are still seeing this, it would be great if you could produce a minimal case, perhaps on jsfiddle. On Fri, Feb 6, 2015 at

Re: [visualization-api] Strange lines appear in ChartRangeFilter ControlWrapper

2015-02-10 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Luca, I suspect your data is not in order, and the chart range filter merely draws the data as a normal line chart would. If you sort the data by the zeroth column, that should solve your problem. On Tue, Feb 10, 2015 at 2:18 PM, Luca Prete wrote: > Hi everyone, > > I succeeded to create di

Re: [visualization-api] chart role with a specific style

2015-02-11 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hey Reut, We don't currently support use of lineDashStyle in the 'style' role, but that would be the way you could do it on a per-row basis. In the meantime, you could do the equivalent by using additional series, duplicating points as needed, and giving each series the appropriate lineDashStyle.

Re: [visualization-api] "Certainity" not shown

2015-02-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Tomasz, The certainty role is not supported yet with the new material charts. Until it is supported, if you want the material styling, you can use theme:'material' with corecharts. See this example: http://jsfiddle.net/dlaliberte/a9efaL7f/ On Thu, Feb 12, 2015 at 8:30 AM, Tomasz Piwniuk wrot

Re: [visualization-api] Timelines with numbers

2015-02-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Aravind, You have found a bug. In the meantime, the timeline chart does appear to work with numbers if they are large enough, and then it treats them as the number of milliseconds. I changed your example to add '000' to your numbers: http://jsfiddle.net/dlaliberte/wkwkvk7j/ On Thu, Feb 12,

Re: [visualization-api] Visual Improvements for Annotation Chart?

2015-02-16 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Sorry Jahn, but we have been focused on other priorities. But you can now make quite a lot of changes yourself now using the options that apply to the main 'chart', the 'range' selector, and the 'table' of annotations, respectively.Not all options will work as expected, however, so let us know

Re: [visualization-api] Pie Chart labels bug on dynamic display

2015-02-16 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
This is a known problem, and the workaround is to delay drawing of the chart until it is visible. Or depending on your application, you might be able to use the "visibility: hidden" CSS property instead of "display: none". On Mon, Feb 16, 2015 at 9:27 AM, Manu wrote: > Hi, > > I'm currently wor

Re: [visualization-api] Re: Weird bug with gauges

2015-02-16 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Mike and Malik, The latest candidate release, which you can get if you load "1.1", includes a fix for this problem with the shrinking Gauge chart. It would be great if you could try it now to see whether it works for you. On Mon, Feb 16, 2015 at 9:57 AM, Malik Al-Malik wrote: > It looks as

Re: [visualization-api] Visual Improvements for Annotation Chart?

2015-02-17 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Jahn, These are reasonable requests. * The highlighting style for annotation select needs to stand out more, and there should be a user-customizable way to specify that style. The complication is only that this would be shared code affecting all annotations. * The display of the annotation text

Re: [visualization-api] QueryResponse - getReasons() : it does not return expected value

2015-02-17 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Jean-Rémi It appears the api must have handled this access_denied error at some time in the past, but at this time, it is not, perhaps due to changes on the spreadsheet side. We will investigate whether we can fix this. Thanks for your report. On Mon, Feb 16, 2015 at 10:09 AM, Jean-Rémi Del

Re: [visualization-api] Visual Improvements for Annotation Chart?

2015-02-17 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ah, well the documentation is at least confusing, since it says "If set to true, the chart will show annotations on top of selected values." which should be for the 'false' setting, and it doesn't say anything about displaying annotations in the table on the right. Furthermore, if you specify disp

Re: [visualization-api] Re: Tooltip for Sankey diagram not working

2015-02-18 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Unfortunately, the Sankey chart does not yet support tooltips, despite the documentation saying it does. No promises at this time for when we will get to it. On Wed, Feb 18, 2015 at 1:04 PM, Stephen McGlade wrote: > I have exactly the same issue ! > > > On Tuesday, January 27, 2015 at 4:52:39 A

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The V41 release finally succeeded in going out sometime this morning. There may be some inconsistent behavior until everyone is loading the right code. Judging from the error reports, we may be rolling this back. On Feb 19, 2015 4:04 AM, "Yehonathan Sharvit" wrote: > > What is the release date f

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
James, do you know if you are drawing the table when the container is not visible, if it has width 0? That could be the cause of the table ending up width 0. On Thu, Feb 19, 2015 at 11:02 AM, James Tanner wrote: > Is the list of changes that rolled out this morning complete? Several of > our da

Re: [visualization-api] Re: 'querySelector error' in Google Visualization Data Table in IE9

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
In order to catch more problems before they become visible, we do need more people to test the candidate release before it becomes the actual release. Please do load "1.1" if you can, especially in your test environment. On Thu, Feb 19, 2015 at 11:50 AM, Jodi Chase wrote: > We are also seeing lo

Re: [visualization-api] Regression with the new version pushed today?

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Philippe, Even though your chart options include gridlines: { count: 7 }, there are heuristics involved that can override in some cases. That's what is happening here, probably because it decides there is not enough space between the ticks. You can get the exact ticks you want, however, by using

Re: [visualization-api] Regression with the new version pushed today?

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Regarding your last question, we don't provide access to specific versions of the library at this time, but we are planning to find a way in the future. On Thu, Feb 19, 2015 at 12:17 PM, Daniel LaLiberte wrote: > Philippe, > > Even though your chart options include gridlines: { count: 7 }, there

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The rollback is now in progress, and will hopefully finish in about 4 hours, judging from previous experience. On Thu, Feb 19, 2015 at 12:26 PM, SJA wrote: > Daniel > > Our experience today has been charts not rendering when previously > (yesterday) they did or in the case of tables just the hea

Re: [visualization-api] Re: Table Charts are no longer responsive

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks Seth, I was wondering if adding width: 100% would help. We might just require that going forward, especially in cases where the width is basically required. On Thu, Feb 19, 2015 at 12:31 PM, seth isernhagen wrote: > I fixed my issue by adding a *width: '100%'* property to the table.draw

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
James, I'm seeing two types of errors in the developer tools on your page now: Uncaught TypeError: Cannot set property 'onfocus' of undefined Uncaught Error: Invalid row index 5122. Should be in the range [0-70]. The second error, we have a fix for. The 'onfocus' error seems to be due to this q

Re: [visualization-api] Please support locking to a specific version of the API (v41 redux)

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Chris, We fully understand your reasons for needing a frozen/locked version to depend on, and we basically agree. Our main issue at this time is that we will need to change the way we deploy the software to allow this. Until we can make the rather large change to our deployment mechanism, we rel

[visualization-api] Google Charts, V41 release status

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Yesterday, Feb 18, Google Charts V41, was released to production. However, several problems were found, and we attempted to rollback the release today. But the rollback is also failing, so we are stuck between a rock and a hard place, as the saying goes. Since we already have fixes for most of t

Re: [visualization-api] Re: issue started this morning

2015-02-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
General update posted: https://groups.google.com/forum/#!topic/google-visualization-api/hLuH41grF2k The querySelector problem is one that will be fixed asap, hopefully this evening. On Thu, Feb 19, 2015 at 4:25 PM, Toronto Ccas wrote: > any update? > > > On Thursday, February 19, 2015 at 12:54

Re: [visualization-api] Error "Argument not valid" in Google Data Table Visualization API

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Frodo, thanks for your report. Can you give us a link to your page or copy-paste enough of the code and data to reproduce what you are seeing so we can check out the problem. On Feb 20, 2015 3:21 AM, "Frodo Heisenberg" wrote: > Now when we try to load the google data tables in our application we

Re: [visualization-api] Re: issue started this morning

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Toronto, are you sure this is not a caching issue?If you are using 1.1, please switch to 1.0 (or 1, which loads 1.0). We only applied the fix to the 1.0 version. If the problem persists, can you give us a pointer to the page where you see the problem? Or can you reproduce the problem in jsfi

Re: [visualization-api] Headings not aligning with data columns in Table Chart when height option is specified

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Greg, there are a few issues with tables in the v41 release, but hardly anyone has given us enough details to reproduce the problems. It may be that specifying the height and width explicitly can resolve most of the problems. We may rely on that, depending on the nature of the actual problems and

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
James, the fixes did go out, one of which addressed the indexing of selections in Dashboards. We have been updating the documentation, but there is always more to do. We are glad you are getting value from Google Charts. Sorry for the inconveniences this release has caused. Hopefully they will

Re: [visualization-api] Re: Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Lewis, the table elements have changed, so if you have css code that depends on internal use of css, then you will have to update accordingly, or better, use the cssClassNames option so your own class names will be used. The width of the table content being set to 0 is most likely due to drawing t

Re: [visualization-api] Compatability view issue?

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Tom, the v41 release is affecting the Table chart in various ways. If you could point us at a page that shows the problem you are seeing, we will be able to look into it and find a fix, or possibly a workaround. On Fri, Feb 20, 2015 at 9:19 AM, Tom Scott wrote: > We have a Notes/Domino based ap

Re: [visualization-api] Re: Google Charts, V41 release status

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The new fixes did get applied, but you will only see them if you load "1.0". The fixes did not include changes for the Table chart sizing, because we didn't have enough to go on to determine what should be changed. Please provide a link to a page showing the incorrect behavior you are seeing so w

Re: [visualization-api] Compatability view issue?

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Tom, unfortunately, we can't back out the v41 release due to an unknown problem. So we are stuck making fixes going forward. If you load "1" (outside of google), you will get the same thing as loading "1.0". Code snippets will be fine, but please include enough html and css to reproduce it. If

Re: [visualization-api] Compatability view issue?

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Tom, here is a jsfiddle that I made from your code. http://jsfiddle.net/dlaliberte/L6vj3u9a/ I don't see a problem with its rendering, so perhaps more is needed. You should be able to modify it, click Run to see it again. Once you get it in a form that shows the problem, you can Fork it to your

Re: [visualization-api] Compatability view issue?

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Vaish, We have no setImmediate method in our code, so I yet don't know where that is coming from. Could you post a link to a page showing the problem, or email me ( dlalibe...@google.com), so we can see it in action and debug it. Thanks. On Fri, Feb 20, 2015 at 10:23 AM, Daniel LaLiberte wrote

Re: [visualization-api] Re: Google Charts, V41 release status

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Jean-Rémi Thanks very much for your feedback and workarounds. We may be able to incorporate something to make this auto-resizing work better. On Fri, Feb 20, 2015 at 10:21 AM, Jean-Rémi Delteil < jeanremi.delt...@gmail.com> wrote: > Hi Daniel, > > Your fix for : > >> *Uncaught Error: Invalid

Re: [visualization-api] Re: Datatables are no longer drawn

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
As Toronto said, use google.load('visualization', '1.0', { ... }); Jan, perhaps you mean the Table chart is not drawn. In any event, please either post a link to a page showing the problem, or email me a link ( dlalibe...@google.com). Thanks. On Fri, Feb 20, 2015 at 9:29 AM, Toronto Ccas wro

Re: [visualization-api] Compatability view issue?

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Tom, I don't know why formatting values would make a difference. Perhaps it is a coincidence, and the order of the tables makes a difference. On Fri, Feb 20, 2015 at 1:20 PM, Tom Scott wrote: > Daniel, >> > > I found another place from the same page where another table of data is > being genera

Re: [visualization-api] Re: Google Charts, V41 release status

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Sorry Dimitry, we were unable to rollback the release this time around. And there is no way to point to the old code now. If you can point us a page that shows your broken tables and line charts, we will be happy to look into it. Or you might prefer to email me directly (dlalibe...@google.com).

Re: [visualization-api] Re: Datatables are no longer drawn

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Alexander, if you are drawing your Table chart when the container is small, then the table will remember that height, unless you tell it you want a different size. Have you tried setting the height option to '100%' or to some other fixed number? If you could point us to a page showing the problem

Re: [visualization-api] Re: Can i use Google Charts with phpmyadmin?

2015-02-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks Jodi. We actually have a documentation about how to do this as well: https://developers.google.com/chart/interactive/docs/php_example On Fri, Feb 20, 2015 at 3:22 PM, Jodi Chase wrote: > Yes this can be done, you just need to write something that reads the data > from your database and c

[visualization-api] Re: Google chart issue related to both axis label and legend text

2015-02-21 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Biduth, The code you copied doesn't have any obvious problems, but there are a lot of unknowns making it impossible to tell what might be going wrong. It would probably be best if you could give me a link to your web page so I can see what is happening and debug it from there. Thanks. On Sa

Re: [visualization-api] Why Google Chart official page does not mention the new release?

2015-02-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Philippe, You are correct that the release notes are missing for v41, which will be updated shortly. We did mail out the initial announcement and release schedule here: https://groups.google.com/forum/#!topic/google-visualization-api/pmSPOap_2gk That list is basically the same as what will e

Re: [visualization-api] Re: Google Vis API version

2015-02-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Philippe and Michal, we actually agree that we should provide a way to let users load specific versions. At this time, our build and release process makes it an extra burden to maintain older versions, plus we would have to be able to retire some older versions anyway, especially if security vulne

Re: [visualization-api] Treemap chart : unable to have 2 nodes with same ID but different parents

2015-02-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Scott, The ability to specify value and formatted value applies to any value, not just for the id in the treemap. See the documentation for arrayToDataTable: https://developers.google.com/chart/interactive/docs/reference#google.visualization.arraytodatatable where it is mentioned, but it is n

Re: [visualization-api] Curving the Lines mit zwei var's dataA und dataB

2015-02-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi crazynet, It is difficult to understand how your php code will result in the html and script code, so could you post a link to a web page that demonstrates your problem? Or view the source of the page in your browser, and copy that here. Perhaps if you look at the generated html and script co

Re: [visualization-api] Re: Charts stopped working after I cleared cache today, which were earlier working and I also observed API changes especially in DataTable

2015-02-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Nisarg, First, the obfuscated property names will change each time we do a release, so you should not use them except for a short-term hack that you should expect will be broken again shortly. Second, the startup animation is a new feature, and it turns out not to work with DataViews. So if y

Re: [visualization-api] Re: Headings not aligning with data columns in Table Chart when height option is specified

2015-02-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Dimitry, the duplicate tables created when there are enough rows, for the frozen header and body, should have the same cell contents, and the same width and height properties, so they should all end up aligned properly. The way tbody is hidden, using visibility:invisible, means that the size of the

<    1   2   3   4   5   6   7   8   9   10   >