Hi,

Is there any open source java library available that provides classes for 
each chart ,which constructs the data table internally based on the data 
format of the chart specified in the  google visualization API.

for example:

PieChart pieChart=new Piechart();
> Slice s1=new Slice("Part1",10);
> Slice s2=new Slice("Part1",20);
> Slice s3=new Slice("Part1",30);
> pieChart.add(s1);
> pieChart.add(s2);
> pieChart.add(s3);
> DataTable dt=pieChart.getDataTable();


this should generate the data table in the format specified in 
https://developers.google.com/chart/interactive/docs/gallery/piechart#data-format
.

Thanks in advance

Regards,
Gajendra.

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to