Hi,
I'm using google Motion Chart.Its really amazing one.But i'd a problem
with slider.Let me explain about my requirement.
I've to show the survey result in the chart.The survey is about people
opinion of health,wealth and beauty.But the survey has been taken
particular years with some intravels like 1990,1995,2000,2005,2010.
So i'm using google motion chart.My datatable script is:
var data = new google.visualization.DataTable();
data.addColumn('string', 'Opinion');
data.addColumn('number', 'Year');
data.addColumn('number', 'Percentage');
data.addColumn('string', 'Opinion');
// data.addColumn('number', 'Year');
data.addRows([
['Health',1990,40,'Health'],
['Wealth',1990,25,'Wealth'],
['Beauty',1990,35,'Beauty'],
['Health',1995,37,'Health'],
['Wealth',1995,43,'Wealth'],
['Beauty',1995,20,'Beauty'],
['Health',2000,36,'Health'],
['Wealth',2000,45,'Wealth'],
['Beauty',2000,19,'Beauty'],
['Health',2005,45,'Health'],
['Wealth',2005,30,'Wealth'],
['Beauty',2005,25,'Beauty'],
['Health',2010,60,'Health'],
['Wealth',2010,33,'Wealth'],
['Beauty',2010,7,'Beauty'],
]);
The above code working fine.The only problem is,when anyone click play
button,it'l be automatically starts from 1990 to 2010.It shows the
value for every year.But the things is,there is no value in other than
these specified years.So what i want is,if any one clicks play,it'l be
moving to specified years which i gave(with some specific intravels).
Is there anyway to give the value with this kind of automaticlly
increased intravels??
Thanks in Advance.
Regards,
Venkat
--
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.