0
我正在查看asp:chart文檔,並且沒有看到您在ChartArea上設置了「ChartType」的位置。你如何製作一個簡單的2D PieChart?我沒有看到你在哪裏設置類型。ASP.NET和新的圖表控件
注意: 調整戈登的答案ASP.NET。足夠接近讓我走上正確的道路。謝謝。
我正在查看asp:chart文檔,並且沒有看到您在ChartArea上設置了「ChartType」的位置。你如何製作一個簡單的2D PieChart?我沒有看到你在哪裏設置類型。ASP.NET和新的圖表控件
注意: 調整戈登的答案ASP.NET。足夠接近讓我走上正確的道路。謝謝。
using System.Windows.Forms.DataVisualization.Charting;
...
// Populate series data
double[] yValues = {65.62, 75.54, 60.45, 34.73, 85.42};
string[] xValues = {"France", "Canada", "Germany", "USA", "Italy"};
chart1.Series["Default"].Points.DataBindXY(xValues, yValues);
// Set Pie chart type
chart1.Series["Default"].ChartType = SeriesChartType.Pie;
// Set labels style
chart1.Series["Default"]["PieLabelStyle"] = "Outside";
啊哈。 ChartType在系列上。 -1對我來說很酷的一點。 – BuddyJoe 2009-02-12 20:15:36