A C# wrapper for the Google Chart API.
Supports all the features of the Chart API
See the source code that generated this chart on the UsageExamples page.
Documentation
The 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 Example
using GoogleChartSharp;
int[] data = new int[] { 0, 10, 20, 30, 40 };
LineChart chart = new LineChart(150, 150);
chart.SetData(data);
string url = chart.GetUrl();
