|
Project Information
Members
Featured
Downloads
Wiki pages
|
A C# wrapper for the Google Chart API.See the source code that generated this chart on the UsageExamples page. DocumentationThe library documentation provides examples of all the Chart API features. If you have any questions after reading the documentation, the Google Chart API Developer's Guide is an excellent reference. A Simple Exampleusing GoogleChartSharp;
int[] data = new int[] { 0, 10, 20, 30, 40 };
LineChart chart = new LineChart(150, 150);
chart.SetData(data);
string url = chart.GetUrl();
|