首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

作图饼图

2012-11-11 
绘制饼图using System.Drawingpublic partial class _Default : System.Web.UI.Page {protected void Pag

绘制饼图
using System.Drawing;
public partial class _Default : 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("饼图测试", new Font("Arial", 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.Indigo, x, y, width, width, startAngle, sweepAngle);
            index++;
            startAngle += sweepAngle;
        }

        bm.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
        g.Dispose();
    }
}

热点排行