我想使用基于 ajax 的图表控件制作图表。我已经为它添加了 ajax 工具包。
我想创建如下链接中的图表
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/BarChart/BarChart.aspx
通过使用静态数据。我可以创建如下图表
<asp:BarChart ID="BarChart1" runat="server"
ChartHeight="300" ChartWidth="450" ChartType="StackedColumn"
ChartTitle="United States versus European Widget Production"
CategoriesAxis="2007,2008,2009,2010,2011,2012"
ChartTitleColor="blue" CategoryAxisLineColor="Red"
ValueAxisLineColor="yellow" BaseLineColor="green" >
<Series>
<asp:BarChartSeries Name="United States" BarColor="#6C1E83"
Data="110, 189, 255, 95, 107, 140" />
<asp:BarChartSeries Name="Europe" BarColor="#D08AD9"
Data="49, 77, 95, 68, 70, 79" />
</Series>
</asp:BarChart>
但我不知道如何将现有数据绑定到图表控件的数据源。那么该怎么做呢?