收藏 分销(赏)

C#绘制曲线图及柱状图.docx

上传人:仙人****88 文档编号:7387167 上传时间:2025-01-02 格式:DOCX 页数:8 大小:17.70KB 下载积分:10 金币
下载 相关 举报
C#绘制曲线图及柱状图.docx_第1页
第1页 / 共8页
C#绘制曲线图及柱状图.docx_第2页
第2页 / 共8页


点击查看更多>>
资源描述
C#绘制曲线图和柱状图 矩形图 //Render是图形大标题,图开小标题,图形宽度,图形长度,饼图的数据集和饼图的数据集         public Image Render(string title, int width, int height, DataTable chartTable)         {             Bitmap bm = new Bitmap(width, height);             Graphics g = Graphics.FromImage(bm);             g.Clear(Color.White);             DataTable dt = chartTable;             const int top = 30;             const int left = 35;             if (width < left * 2 || height < top * 2)             {                 g.DrawString("绘图区域太小", new Font("Tahoma", 8),                     Brushes.Blue, new PointF(0, 0));                 return bm;             }             //计算最高的点             float highPoint = 1;             foreach (DataRow dr in dt.Rows)             {                if (highPoint < Convert.ToSingle(dr[0]))                 {                     highPoint = Convert.ToSingle(dr[0]);                 }                 if (highPoint < Convert.ToSingle(dr[1]))                 {                     highPoint = Convert.ToSingle(dr[1]);                 }             }             try             {                 //画大标题                 g.DrawString(title, new Font("Tahoma", 12), Brushes.Black, new PointF(2, 2));                 StringFormat drawFormat = new StringFormat();                 drawFormat.FormatFlags = StringFormatFlags.DirectionVertical;                 g.DrawString("[红--" + dt.Columns[0].ToString() + "]", new Font("Tahoma", 8),                     Brushes.Red, new PointF(2, top), drawFormat);                 g.DrawString("[蓝--" + dt.Columns[1].ToString() + "]", new Font("Tahoma", 8),                     Brushes.Blue, new PointF(17, top), drawFormat);                 //画条形图                 float barWidth = (Convert.ToSingle(width) - left) / (dt.Rows.Count * 3 + 1);                 PointF barOrigin = new PointF(left + barWidth, 0);                 float barHeight = dt.Rows.Count;                 float topFontSize = (barWidth / highPoint.ToString().Length);                                  if (topFontSize > 2*top/3)                 {                     topFontSize = 2*top/3;                 }                 if (topFontSize < 5)                 {                     topFontSize = 5;                 }                 for (int i = 0; i < dt.Rows.Count; i++)                 {                     //底部字体的大小                     float bottomFontSize = (2 * barWidth / dt.Rows[2].ToString().Length) + 2;                     if (bottomFontSize > 2 * top / 3)                     {                         bottomFontSize = 2 * top / 3;                     }                     barHeight = Convert.ToSingle(dt.Rows[0]) * (height - 2 * top) / highPoint * 1;                     barOrigin.Y = height - barHeight - top;                     g.FillRectangle(new SolidBrush(Color.Red), barOrigin.X, barOrigin.Y, barWidth, barHeight);                     //柱状图底部                     g.DrawString(dt.Rows[2].ToString(), new Font("Tahoma", bottomFontSize), Brushes.Black,                         new PointF(barOrigin.X, height - top));                     //柱状图顶部                     g.DrawString(dt.Rows[0].ToString(), new Font("Tahoma", topFontSize), Brushes.Red,                         new PointF(barOrigin.X, barOrigin.Y - 3*topFontSize/2));                     barOrigin.X = barOrigin.X + barWidth;                     barHeight = Convert.ToSingle(dt.Rows[1]) * (height - 2 * top) / highPoint * 1;                     barOrigin.Y = height - barHeight - top;                     g.FillRectangle(new SolidBrush(Color.Blue), barOrigin.X, barOrigin.Y, barWidth, barHeight);                     //柱状图顶部                     g.DrawString(dt.Rows[1].ToString(), new Font("Tahoma", topFontSize), Brushes.Blue,                         new PointF(barOrigin.X, barOrigin.Y - 3 * topFontSize/2));                     barOrigin.X = barOrigin.X + (barWidth * 2);                 }                 //设置边                 g.DrawLine(new Pen(Color.Blue, 2), new Point(left, top),                     new Point(left, height - top));                 g.DrawLine(new Pen(Color.Blue, 2), new Point(left, height - top),                     new Point(left + width, height - top));                 g.Dispose();                 return bm;             }             catch             {                 return bm;             }         }K线图     //Render是图形大标题,图开小标题,图形宽度,图形长度,饼图的数据集和饼图的数据集         public Image Render(string title, int width, int height, DataTable chartTable)         {             Bitmap bm = new Bitmap(width, height);             Graphics g = Graphics.FromImage(bm);             g.Clear(Color.White);             const int top = 30;             const int left = 35;             if (width < left * 2 || height < top * 2)             {                 g.DrawString("绘图区域太小" ,new Font("Tahoma", 8),                     Brushes.Blue, new PointF(0, 0));                 return bm;             }             if (chartTable == null)             {                 g.DrawString("没有数据", new Font("Tahoma", 7),                     Brushes.Blue, new PointF(0, 0));                 return bm;             }             DataTable dt = chartTable;             //计算最高的点             float highPoint = 1;             foreach (DataRow dr in dt.Rows)             {                 if (highPoint < Convert.ToSingle(dr[0]))                 {                     highPoint = Convert.ToSingle(dr[0]);                 }                 if (highPoint < Convert.ToSingle(dr[1]))                 {                     highPoint = Convert.ToSingle(dr[1]);                 }             }             //建立一个Graphics对象实例             try             {                 //画大标题                 g.DrawString(title, new Font("Tahoma", 12), Brushes.Black, new PointF(2, 2));                 StringFormat drawFormat = new StringFormat();                 drawFormat.FormatFlags = StringFormatFlags.DirectionVertical;                 g.DrawString("[红--" + dt.Columns[0].ToString() + "]", new Font("Tahoma", 8),                     Brushes.Red, new PointF(2, top), drawFormat);                 g.DrawString("[蓝--" + dt.Columns[1].ToString() + "]", new Font("Tahoma", 8),                     Brushes.Blue, new PointF(17, top), drawFormat);                 //画条形图                 float barWidth = (Convert.ToSingle(width) - left) / (dt.Rows.Count + 1);                 PointF barOrigin = new PointF(left + barWidth , 0);                 float barHeight = dt.Rows.Count;                 float topFontSize = 7;                 float bottomFontSize = 7;                 PointF[] pt1 = new PointF[dt.Rows.Count];                 PointF[] pt2 = new PointF[dt.Rows.Count];                 for (int i = 0; i < dt.Rows.Count; i++)                 {                     //底部字体的大小                     barHeight = Convert.ToSingle(dt.Rows[0]) * (height - 2 * top) / highPoint * 1;                     barOrigin.Y = height - barHeight - top;                     g.FillEllipse(new SolidBrush(Color.Red), barOrigin.X - 3, barOrigin.Y - 3, 6, 6);                     pt1 = new PointF(barOrigin.X, barOrigin.Y);                     //顶部                     g.DrawString(dt.Rows[0].ToString(), new Font("Tahoma", topFontSize), Brushes.Red,                         new PointF(barOrigin.X, barOrigin.Y - 4 * topFontSize / 2));                     barHeight = Convert.ToSingle(dt.Rows[1]) * (height - 2 * top) / highPoint * 1;                     barOrigin.Y = height - barHeight - top;                     g.FillEllipse(new SolidBrush(Color.Blue), barOrigin.X - 3, barOrigin.Y - 3, 6, 6);                     pt2 = new PointF(barOrigin.X, barOrigin.Y);                     //顶部                     g.DrawString(dt.Rows[1].ToString(), new Font("Tahoma", topFontSize), Brushes.Blue,                         new PointF(barOrigin.X, barOrigin.Y - 4 * topFontSize / 2));                     barOrigin.X = barOrigin.X + barWidth;                 }                 if (dt.Rows.Count > 10)                 {                     int dis = dt.Rows.Count / 10;                     for (int i = 0; i < dt.Rows.Count; i++)                     {                         if (i % dis == 0)                         {                             g.DrawLine(new Pen(Color.Blue, 2), new PointF(left + (i + 1) * barWidth, height - top + 5),                                 new PointF(left + (i + 1) * barWidth, height - top - 3));                             //底部                             g.DrawString(dt.Rows[2].ToString(), new Font("Tahoma", bottomFontSize), Brushes.Black,                                 new PointF(left + (i + 1) * barWidth, height - top));                         }                         else                         {                             g.DrawLine(new Pen(Color.Gray, 1), new PointF(left + (i+1) * barWidth, height - top + 3),                                 new PointF(left + (i+1) * barWidth, height - top - 3));                         }                     }                 }                 else                 {                     for (int i = 0; i < dt.Rows.Count; i++)                     {                         g.DrawLine(new Pen(Color.Gray, 1), new PointF(left + (i + 1) * barWidth, height - top + 3),                             new PointF(left + (i + 1) * barWidth, height - top - 3));                     }                 }                 //绘制曲线                 g.DrawLines(new Pen(new SolidBrush(Color.Red), 1), pt1);                 g.DrawLines(new Pen(new SolidBrush(Color.Blue),1), pt2);                 //设置边                 g.DrawLine(new Pen(Color.Blue, 2), new Point(left, top),                     new Point(left, height - top));                 g.DrawLine(new Pen(Color.Blue, 2), new Point(left, height - top),                     new Point(left + width, height - top));                 g.Dispose();                 return bm;             }             catch             {                 return bm;             }         }
展开阅读全文

开通  VIP会员、SVIP会员  优惠大
下载10份以上建议开通VIP会员
下载20份以上建议开通SVIP会员


开通VIP      成为共赢上传

当前位置:首页 > 教育专区 > 小学其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        抽奖活动

©2010-2026 宁波自信网络信息技术有限公司  版权所有

客服电话:0574-28810668  投诉电话:18658249818

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :微信公众号    抖音    微博    LOFTER 

客服