[visualization-api] Re: Example code for tooltips in a table chart

2014-10-16 Thread Mike
Hi Andrew, I corrected the quotes as you suggested and my span title is now showing the full string, thank you! I appended the addListener code to the function handleQueryResponse() so that it looks like: function handleQueryResponse2(response) { if (response.isError()) {

[visualization-api] Re: Missing Vertical line on the column chart y axis left most

2014-10-16 Thread born2achieve
Hi Andrew, Thanks for your reply. I am little confused about the discrete type. Can you please show me some example code to achieve this vertical line would be great. Thanks in advance On Wednesday, 15 October 2014 22:09:37 UTC-4, Andrew Gallant wrote: The baseline only shows up when you

Re: [visualization-api] Re: Missing Vertical line on the column chart y axis left most

2014-10-16 Thread 'Daniel LaLiberte' via Google Visualization API
Hi karthikeyan, Here is a bit more detail about what Andrew alluded to. No vertical gridlines are shown for the horizontal axis when discrete (or string) values are used, not even for the line where you would think the vertical axis line should be, which is also usually the baseline. If you

[visualization-api] Multiple colors by line on LineChart

2014-10-16 Thread Alexandre Carrie
Hello, I need help to custom my LineChart. Actually I use ComboChart and I've something like this : https://lh4.googleusercontent.com/-Oo0Qvg9PtmQ/VD_PIMN8q_I/AJQ/-gasrkqj2V8/s1600/V1.PNG And I want to have the same thing but with a LineChart. The last date with another color. Like

Re: [visualization-api] Re: Missing Vertical line on the column chart y axis left most

2014-10-16 Thread born2achieve
Hi Daniel, Do you have any sample to achieve this? It would be great if you could share. thanks On Thursday, 16 October 2014 08:48:33 UTC-4, Daniel LaLiberte wrote: Hi karthikeyan, Here is a bit more detail about what Andrew alluded to. No vertical gridlines are shown for the

Re: [visualization-api] Google Charts animation

2014-10-16 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Pavel, We plan on supporting a variety of startup animations at some point. The current code base has a number of issues that limit our choices, but we may be able to add at least one form of the startup animation. One complication, if you want to try doing this yourself, is that if you

Re: [visualization-api] Google Charts animation

2014-10-16 Thread Pavel Volgarev
Hi Daniel, Yes, you're absolutely right regarding the axis - I forgot to mention this (as I said, we did experiment with this approach and found it not very suitable to our needs). It's good to hear that you guys are planning to continue investing in that direction, although we kind of need

[visualization-api] Re: Example code for tooltips in a table chart

2014-10-16 Thread Andrew Gallant
Put the ready event handler before calling chart2.draw; otherwise the chart may finish drawing and fire its ready event before you create the handler, and thus the handler will never trigger. This could explain why it isn't working. On Thursday, October 16, 2014 4:41:18 AM UTC-4, Mike wrote:

[visualization-api] Re: Multiple colors by line on LineChart

2014-10-16 Thread Andrew Gallant
You can change the color of the points using a style role column (like when changing the color of the bars). Changing the color of the line is more difficult. The scope role column will grey out sections of the line (as in your example), but you cannot control the color. The only other way