亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP.Net頁面生成餅圖實(shí)例

 更新時(shí)間:2014年11月12日 09:52:10   投稿:shichen2014  
這篇文章主要介紹了ASP.Net頁面生成餅圖的方法,實(shí)例講述了生成普通餅圖與增加邊線的方法,具有不錯(cuò)的參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了ASP.Net頁面生成餅圖的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

1.生成普通餅圖:

復(fù)制代碼 代碼如下:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Drawing : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
int[] data = { 100,200,300,460};
Color[] colors={Color.Green,Color.Blue,Color.Yellow,Color.Tomato};
Bitmap bm = new Bitmap(400,400);
Graphics g = Graphics.FromImage(bm);
g.Clear(Color.White);
g.DrawString("餅圖測(cè)試",new Font("宋體",16),Brushes.Red,new PointF(5,5));
float totalValue = 0;
foreach (int i in data)
{
totalValue += i;
}

float sweepAngle = 0;
float startAngle = 0;
int index=0;
float x = 50f;
float y = 50f;
float width = 200f;
foreach (int i in data)
{
sweepAngle=i/totalValue*360;
g.FillPie(new SolidBrush(colors[index++]),x,y,width,width,startAngle,sweepAngle);
//g.DrawPie(Pens.Black,x,y,width,width,startAngle,sweepAngle); //加邊線代碼
startAngle += sweepAngle;
}
bm.Save(Response.OutputStream,ImageFormat.Jpeg);
g.Dispose();
}
}

運(yùn)行效果如下圖所示:

2.如果餅圖要加邊線,就將上面代碼中加注釋的代碼部分取消注釋,如下代碼所示:

復(fù)制代碼 代碼如下:
g.DrawPie(Pens.Black,x,y,width,width,startAngle,sweepAngle);

運(yùn)行結(jié)果如下圖:

希望本文所述對(duì)大家的asp.net程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論