GoogleChartSharp - C#图表API


Apache
Windows
C#

软件简介

GoogleChartSharp 是一个 Google 的图表 API 的 C# 语言封装。

示例代码:

using GoogleChartSharp;

int[] data = new int[] { 0, 10, 20, 30, 40 };  
LineChart chart = new LineChart(150, 150);  
chart.SetData(data);  
string url = chart.GetUrl();