今天做的是ASP.NET餅狀報表. 之前想用VS內建的MSChart控制項來繪製,但是用MSChart製作不是很方便(項目中),不過有MSChart繪製的樣本,希望大家能夠指點下。 而且也就是因為這,所以我發現了一個繪製餅狀圖更好的外掛程式: OWC;大家可以從http://www.codeproject.com/KB/aspnet/owc11article.aspx下載外掛程式. (試了一下,PC上面如果安裝了Office 版本是2003的話,必須安裝這個外掛程式)。
好了,不羅嗦了 ,直接粘貼關鍵源碼吧:
public void CreatePinReport()
{
//建立之前刪除產生的檔案
string deleteFileName = "stat.gif";//要刪除的檔案名稱
try
{
string[] rootDirs = Directory.GetDirectories("http://images.cnblogs.com/"); //目前的目錄的子目錄:
string[] rootFiles = Directory.GetFiles("http://images.cnblogs.com/"); //目前的目錄下的檔案:
foreach (string s2 in rootFiles)
{
if (s2.Contains(deleteFileName))
{
Console.WriteLine(s2);
File.Delete(s2); //刪除檔案
}
}
}
catch (Exception)
{
}
//建立X座標的值,表示月份
string[] month = GetNop_DictionaryWineType();
//建立Y座標的值,表示銷售額
List<double> list = new List<double>();
for (int i = 0; i < GetNop_DictionaryValueWineType().Length; i++)
{
//count = GetSumOrderByProductCategoryID(Convert.ToInt32(GetNop_DictionaryValueWineType()[i]));
list.Add(GetSumOrderByProductCategoryID(Convert.ToInt32(GetNop_DictionaryValueWineType()[i])));
}
double[] count = list.ToArray();
string strDataName = "";
string strData = "";
//建立圖資料表空間
ChartSpace mychartSpace = new ChartSpace();
mychartSpace.Border.Color = "White";
//在圖資料表空間內添加一個圖表對象
ChChart mychart = mychartSpace.Charts.Add(0);
//設定每塊餅的資料
for (int i = 0; i < count.Length; i++)
{
strDataName += month[i]+ "\t";
strData += count[i] + "\t";
}
//設定圖表類型,本例使用餅
mychart.Type = ChartChartTypeEnum.chChartTypePie;
//設定圖表的一些屬性
//是否需要圖例
mychart.HasLegend = true;
//是否需要主題
mychart.HasTitle = true;
//主題內容
mychart.Title.Caption = "餅狀圖測試";
mychart.Title.Font.Size = 10;
mychart.Title.Font.Bold = false;
mychart.Legend.Position = ChartLegendPositionEnum.chLegendPositionBottom;
mychart.Legend.Interior.Color = "f9f9f9";
mychart.Legend.Font.Size = 9;
mychart.Legend.Border.Color = "White";
//添加圖表塊
mychart.SeriesCollection.Add(0);
//設定圖表塊的屬性
//分類屬性
mychart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimCategories,
(int)ChartSpecialDataSourcesEnum.chDataLiteral, strDataName);
//值屬性
mychart.SeriesCollection[0].SetData(ChartDimensionsEnum.chDimValues,
(int)ChartSpecialDataSourcesEnum.chDataLiteral, strData);
for (int j = 0; j < mychart.SeriesCollection[0].Points.Count; j++)
{
mychart.SeriesCollection[0].Points[j].Border.Color = "White";
}
//顯示百分比
ChDataLabels mytb = mychart.SeriesCollection[0].DataLabelsCollection.Add();
mytb.HasPercentage = true;
//mytb.Border.Color = "White";
mytb.HasValue = true;
//產生圖片
mychartSpace.ExportPicture(Server.MapPath("../images/") + @"stat.gif", "gif", 700, 400);
//載入圖片
this.ig.ImageUrl = "http://images.cnblogs.com/stat.gif";
}
以下是代碼顯示:
代碼很簡單,而且有詳細的注釋,希望大家多多指教..