ASP.NET Server-Side Charting With OWC11——餅狀圖

來源:互聯網
上載者:User
     今天做的是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";
}

以下是代碼顯示:

代碼很簡單,而且有詳細的注釋,希望大家多多指教..

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.