My favorites | Sign in
Project Home Downloads Wiki Issues Source
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.

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();

See the chart

Powered by Google Project Hosting