[visualization-api] Re: Options.set(key,value)

2013-07-02 Thread miriam qp
I have the following code: AreaChart chart = new AreaChart(createTable(m_patient.getScoreList(), m_patient.getFullName()), createOptions()); Whre CreateTable add 5 series and createOptions: private Options createOptions() { Options m_options = Options.create(); Options

[visualization-api] AreaChart graph, 5 series with different colours, opacities and PointSizes.

2013-07-02 Thread miriam qp
I have the following code: AreaChart chart = new AreaChart(createTable(dataList, createOptions()); Whre CreateTable add 5 series and createOptions: private Options createOptions() { Options m_options = Options.create(); Options series0_options = Options.create();

[visualization-api] second vertical axis

2013-07-02 Thread Alex
Hi! I need second vertical axis. How can I do that? -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving emails from it, send an email to

[visualization-api] horizontal line in the Column chart

2013-07-02 Thread Alex
Hi, how can I paint in the Column chart horizontal line to highlight some date? -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving emails from it, send an email to

[visualization-api] geochart plot the marker in wrong position

2013-07-02 Thread siva kumar
Hi, i have the list that contains only united states.Now i set the region to india (like options[region] =IN;)it displays the india map and plot the US states in India like in the attachment file. Please guide me to resolve that. Thanks regards, Sivakumar -- You

[visualization-api] Display the legend in geochart

2013-07-02 Thread siva kumar
Hi, i want to display the custom legend at Blue dotted arrowmarks in the attachment file. and also i want to display the description in red arrow mark location. Is it possible to add a description in geochart. Thanks and regards Sivakumar -- You received this message because you

[visualization-api] Create Column chart with discrete vAxis

2013-07-02 Thread Nguyen Le
How can i create a column chart with the vAxis has discrete label? Please help, i'm newbie -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [visualization-api] Annotated Time Line Zooming Problem

2013-07-02 Thread Log Reader
great, that fixed it! Thanks so much On Monday, July 1, 2013 4:57:47 PM UTC+2, Sergey wrote: Hi, the problem with your code is that you're setting your column type to 'date', but your dates also have time in them. If you change the type of your first column to 'datetime', that should fix

[visualization-api] google.visualization.data.group fails on IE8

2013-07-02 Thread Jerome B
Hi All, I have some code running just fine under Chrome, FF but failing under IE8. I am building a datatable with some data over a period of time, then using google.visualization.data.group to generate the sum of the data per month/year... I get the following javascript error on IE8: Message:

[visualization-api] Annotated time line annotation error

2013-07-02 Thread Log Reader
https://lh3.googleusercontent.com/-v_ma5HXwtbA/UdLMbma-u3I/AAo/kWZyjyRLNAo/s1381/annotationError.png This picture shows it all. The annotation appears in the list, but it is not on the chart. When I click it, I get the following error: Uncaught TypeError: Object #HTMLEbedElement has

[visualization-api] Which chart for this?

2013-07-02 Thread ozgunakalin
I wish to have something that looks like this image http://www.google.com/insidesearch/features/search/knowledge.html Bubbles connected to others in a way that i predefine. The main object will look in the middle and the bubbles i define to be connected to that object are around it. And when

[visualization-api] Google Vis does not work on Nook

2013-07-02 Thread Tim Kindberg
I'm having an issue where my site will not display the charts when viewed from a Nook (I know, I know... who cares... its just a Nook), but client would like it to work on Nook if possible. Anyway, even when I go to the code playground the same error happens, so its definitely not specific to

[visualization-api] Re: Vertical Marker on Line Chart

2013-07-02 Thread Luke Chi
hi, asgallant, I can't figure out how to use domain-axis annotation to draw a vertical line, can you explan how to do that? asgallant於 2012年5月17日星期四UTC+8上午1時49分57秒寫道: Oh, I forgot - you can use domain-axis annotations to do this. See column roles

Re: [visualization-api] Event trigger for custom visualization

2013-07-02 Thread asgallant
That would cause the DDListChangeHandler function to execute at the time you are creating the event handler, so you would get the alert initially. You want to pass the function there, not the returned value of the function. This is an interesting case. I set up a test scenario to see what

[visualization-api] Re: Annotated time line annotation error

2013-07-02 Thread Log Reader
Also, if possible is there a way to make this only use times, and not dates? All of my time values are stored as time stamps after the start of the program, I.E. 29 minutes 12 second 30 ms, which when converted into milliseconds and used to instantiate a java date object, comes out to some

[visualization-api] Re: Vertical Marker on Line Chart

2013-07-02 Thread Luke Chi
i got it! http://jsfiddle.net/NC37X/ Luke Chi於 2013年7月2日星期二UTC+8下午11時13分12秒寫道: hi, asgallant, I can't figure out how to use domain-axis annotation to draw a vertical line, can you explan how to do that? asgallant於 2012年5月17日星期四UTC+8上午1時49分57秒寫道: Oh, I forgot - you can use domain-axis

[visualization-api] Re: use of the getRow() function on a datatable deprecated ?

2013-07-02 Thread asgallant
There is no DataTable#getRow method. What is the ultimate goal you are trying to accomplish here? Copying data from one DataTable to another is rarely the best way to approach a problem, so there might be a simpler solution waiting for you. On Monday, July 1, 2013 11:44:48 PM UTC-4, Tristan

[visualization-api] Re: Options.set(key,value)

2013-07-02 Thread asgallant
What does that create when you look at the rendered javascript (open in a browser and view source to see)? On Tuesday, July 2, 2013 3:45:56 AM UTC-4, miriam qp wrote: I have the following code: AreaChart chart = new AreaChart(createTable(m_patient.getScoreList(), m_patient.getFullName()),

[visualization-api] Re: geochart plot the marker in wrong position

2013-07-02 Thread asgallant
I'm confused - why are you trying to plot the US states in India? On Tuesday, July 2, 2013 4:49:04 AM UTC-4, siva kumar wrote: Hi, i have the list that contains only united states.Now i set the region to india (like options[region] =IN;)it displays the india map

[visualization-api] Re: Display the legend in geochart

2013-07-02 Thread asgallant
No, you can't add a legend like that to the chart, but you can build your own legend in HTML and use CSS to position it next to (over even layered over) the chart. On Tuesday, July 2, 2013 5:06:07 AM UTC-4, siva kumar wrote: Hi, i want to display the custom legend at Blue dotted

[visualization-api] Re: Create Column chart with discrete vAxis

2013-07-02 Thread asgallant
Can you explain what you would like in more detail? On Tuesday, July 2, 2013 5:42:28 AM UTC-4, Nguyen Le wrote: How can i create a column chart with the vAxis has discrete label? Please help, i'm newbie -- You received this message because you are subscribed to the Google Groups Google

[visualization-api] Re: second vertical axis

2013-07-02 Thread asgallant
Use the series.series index.targetAxisIndex option to assign series to different vertical axes. Axis 0 is the left vAxis, and 1 is the right vAxis. Use the vAxes.axis index options to set options for the left and right axes (each one takes the same options as the vAxis option). Like this:

[visualization-api] Re: Annotated time line annotation error

2013-07-02 Thread asgallant
If you post the full code, I can take a look and see what might be wrong, but given your desire to use a non-date type axis, you are probably better off switching to a LineChart with a ChartRangeFilter. With those, you can enter your times as type number or timeofday as appropriate. On

Re: [visualization-api] Event trigger for custom visualization

2013-07-02 Thread Amjad Hawwash
Sorry for wrong conclusion earlier. Try to add this console log line in fireTrigger function: console.log('this value =' + this); this is returning HTMLSelectElement, does this make a clue? On Tuesday, July 2, 2013 6:20:46 PM UTC+3, asgallant wrote: That would cause the DDListChangeHandler

Re: [visualization-api] Event trigger for custom visualization

2013-07-02 Thread asgallant
You are absolutely right; that is the exact problem. I should have seen it earlier *facepalm* Fixed code is here: http://jsfiddle.net/asgallant/Mgj4P/3/ On Tuesday, July 2, 2013 2:45:59 PM UTC-4, Amjad Hawwash wrote: Sorry for wrong conclusion earlier. Try to add this console log line in

Re: [visualization-api] Event trigger for custom visualization

2013-07-02 Thread Amjad Hawwash
Yes, I've found similar solution here: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget.addEventListener#The_value_of_this_within_the_handler This worked for Chrome browser: selectdom.addEventListener('change', this.fireTrigger.bind(this), false); On Tuesday, July 2, 2013 10:30:35

Re: [visualization-api] Re: Google Vis does not work on Nook

2013-07-02 Thread Mitchell Foley
Hi Tim, Right now we only support outputting to SVG or VML. Unfortunately, the Nook's browser is based on the old android mobile browser, which didn't get support for SVG until version 3.0. Since the Nook doesn't support either SVG or VML, there's no easy way to get it to work. -Mitch On Tue,

Re: [visualization-api] Re: Google Vis does not work on Nook

2013-07-02 Thread Tim Kindberg
Thank you for the definitive answer! That helps. Thanks, Tim (Sent from my mobile) On Jul 2, 2013, at 6:08 PM, Mitchell Foley mitchfo...@google.com wrote: Hi Tim, Right now we only support outputting to SVG or VML. Unfortunately, the Nook's browser is based on the old android mobile browser,

[visualization-api] Re: google.visualization.data.group fails on IE8

2013-07-02 Thread Jerome B
That was my first thought but kept looking at my code and could not see that trailing comma. Many thanks for the fresh pair of eyes and for taking the time to reply. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe

Re: [visualization-api] Re: use of the getRow() function on a datatable deprecated ?

2013-07-02 Thread Tristan Pochat
Ah OK. So what is my link describing? I found a workaround by using the .K property. On 3 Jul 2013 01:10, asgallant drew_gall...@abtassoc.com wrote: There is no DataTable#getRow method. What is the ultimate goal you are trying to accomplish here? Copying data from one DataTable to another is

[visualization-api] Re: Create Column chart with discrete vAxis

2013-07-02 Thread Nguyen Le
My problem is. I'd like to create a column chart with the label of vAxis is discrete, but the value is not. Like in picture below https://lh5.googleusercontent.com/-4W7V0ahmObE/UdOMy3D6FbI/AQY/L-E_XrOnCiU/s1023/pizap.com13728184936321.jpg How can i create a chart like that. In the

[visualization-api] Create LineChart have the label disrete by step

2013-07-02 Thread Nguyen Le
Hello everybody, I have a problem, please help me I need to draw a chart like below image https://lh5.googleusercontent.com/-hcBLhfZTVc8/UdOuAVuwPfI/AQo/XhYvznZKGIs/s630/Stats+User+engagementedit.jpg I need the vAxis have the format like step above, but the value is full for all. Even i

[visualization-api] Re: geochart plot the marker in wrong position

2013-07-02 Thread siva kumar
Hi, if i mistakenly choose like that,it should show the empty map but its plots the marker in India of US States. If a displayMode is Region its work fine,the problem is only because of marker On Tuesday, 2 July 2013 22:52:30 UTC+5:30, asgallant wrote: I'm confused - why are you trying

[visualization-api] Re: geochart plot the marker in wrong position

2013-07-02 Thread siva kumar
On Tuesday, 2 July 2013 14:19:04 UTC+5:30, siva kumar wrote: Hi, i have the list that contains only united states.Now i set the region to india (like options[region] =IN;)it displays the india map and plot the US states in India like in the attachment file.

[visualization-api] JavaScript Error Occured in Sp.core.js when clicking geochart region

2013-07-02 Thread siva kumar
Hi, I have created a map by using of Geochart in sharepoint webpart.After i am adding a master page in a webpart when i click on region it throws an javascript error that is Object doesn't support property or method 'indexOf' but its fine in IE7 and 8. In Firefox gives the warning

[visualization-api] Re: geochart plot the marker in wrong position

2013-07-02 Thread siva kumar
Hi, if i mistakenly choose like that,it should show the empty map but its plots the marker in India of US States. If a displayMode is Region its work fine,the problem is only because of marker -- You received this message because you are subscribed to the Google Groups Google

[visualization-api] Re: geochart plot the marker in wrong position

2013-07-02 Thread siva kumar
On Tuesday, 2 July 2013 14:19:04 UTC+5:30, siva kumar wrote: Hi, i have the list that contains only united states.Now i set the region to india (like options[region] =IN;)it displays the india map and plot the US states in India like in the attachment file.