Thank you, ChartMan. This works perfectly and is the first working
implementation I've seen of getstate().

On Thu, Aug 12, 2010 at 13:35, ChartMan <[email protected]> wrote:

>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
> http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
> <html xmlns="http://www.w3.org/1999/xhtml";>
> <head>
>   <meta http-equiv="content-type" content="text/html; charset=utf-8" />
>   <title>Google Visualization API Sample</title>
>   <script type="text/javascript" src="http://www.google.com/jsapi";></
> script>
>   <script type="text/javascript">
>     google.load('visualization', '1', {packages: ['motionchart']});
>     var motionchart;
>     function drawVisualization() {
>     var data = new google.visualization.DataTable();
>       data.addRows(6);
>       data.addColumn('string', 'Fruit');
>       data.addColumn('date', 'Date');
>       data.addColumn('number', 'Sales');
>       data.addColumn('number', 'Expenses');
>       data.addColumn('string', 'Location');
>       data.setValue(0, 0, 'Apples');
>       data.setValue(0, 1, new Date (1988,0,1));
>       data.setValue(0, 2, 1000);
>       data.setValue(0, 3, 300);
>       data.setValue(0, 4, 'East');
>       data.setValue(1, 0, 'Oranges');
>       data.setValue(1, 1, new Date (1988,0,1));
>       data.setValue(1, 2, 950);
>       data.setValue(1, 3, 200);
>       data.setValue(1, 4, 'West');
>       data.setValue(2, 0, 'Bananas');
>       data.setValue(2, 1, new Date (1988,0,1));
>       data.setValue(2, 2, 300);
>       data.setValue(2, 3, 250);
>       data.setValue(2, 4, 'West');
>       data.setValue(3, 0, 'Apples');
>       data.setValue(3, 1, new Date(1988,1,1));
>       data.setValue(3, 2, 1200);
>       data.setValue(3, 3, 400);
>       data.setValue(3, 4, "East");
>       data.setValue(4, 0, 'Oranges');
>       data.setValue(4, 1, new Date(1988,1,1));
>       data.setValue(4, 2, 900);
>       data.setValue(4, 3, 150);
>       data.setValue(4, 4, "West");
>       data.setValue(5, 0, 'Bananas');
>       data.setValue(5, 1, new Date(1988,1,1));
>       data.setValue(5, 2, 788);
>       data.setValue(5, 3, 617);
>       data.setValue(5, 4, "West");
>
>       motionchart = new google.visualization.MotionChart(
>           document.getElementById('visualization'));
>       motionchart.draw(data, {'width': 800, 'height': 400});
>     }
>
>
>     google.setOnLoadCallback(drawVisualization);
>
>     function getState() {
>       alert(motionchart.getState());
>     }
>   </script>
> </head>
> <body style="font-family: Arial;border: 0 none;">
>   <input type=button value='Get State' onclick='getState()'>
>   <div id="visualization" style="width: 800px; height: 400px;"></div>
> </body>
> </html>
>
>
> On Thu, Aug 12, 2010 at 1:39 PM, Youssef51 <[email protected]> wrote:
>
>> Hi Folks -
>>
>> I have been unable to get a returned value from getstate() in an
>> otherwise completely functional, error-free  Motionchart app. I've
>> tried many times, and failed.
>>
>> I've read all kinds of posts here looking for a working example of
>> getstate() in a motionchart script.
>>
>> I can not find a single working example that illustrates a successful
>> call to getstate() and the use of the returned state string. It would
>> be enough just to put the string in a variable or to save it to a
>> cookie, for example.
>>
>> Can anyone provide a *working* example?
>>
>> Thank you!
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Visualization API" group.
>> To post to this group, send email to
>> [email protected].
>> To unsubscribe from this group, send email to
>> [email protected]<google-visualization-api%[email protected]>
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-visualization-api?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-visualization-api%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-visualization-api?hl=en.
>



-- 
Vänliga hälsningar,

<http://www.alati.se>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to