C#绘制饼状图和柱状图的方法
作者:CodingByMe 发布时间:2023-12-19 15:42:59
标签:C#,饼状图,柱状图
本文实例为大家分享了C#绘制饼状图和柱状图的具体代码,供大家参考,具体内容如下
#代码如下:
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TEST3._2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
BarMap();
}
private void BitMap()//饼状图
{
int[] saleNum = { 300, 500, 400 };
int sum = 0, threeNum = 0, fourNum = 0, fiveNum = 0;
for (int i = 0; i < saleNum.Length; i++)
{
sum += saleNum[i];
if (i == 0)
threeNum = saleNum[0];
else if (i == 1)
fourNum = saleNum[1];
else
fiveNum = saleNum[2];
}
int height = pictureBox1.Height, width = pictureBox1.Width;
Bitmap bitmap = new Bitmap(width, height);
Graphics g = Graphics.FromImage(bitmap);
g.Clear(Color.White);
Pen pen1 = new Pen(Color.Red);
Brush brush1 = new SolidBrush(Color.PowderBlue);
Brush brush2 = new SolidBrush(Color.Blue);
Brush brush3 = new SolidBrush(Color.Wheat);
Brush brush4 = new SolidBrush(Color.Orange);
Font font1 = new Font("Couriter New", 16, FontStyle.Bold);
Font font2 = new Font("Couriter New", 10);
g.FillRectangle(brush1, 0, 0, width, height);
g.DrawString("每月销售占比饼状图", font1, brush2, new Point(70, 20));
int piex = 100, piey = 60, piew = 200, pieh = 200;
float angle1 = Convert.ToSingle((360 / Convert.ToSingle(sum)) * Convert.ToSingle(threeNum));
float angle2 = Convert.ToSingle((360 / Convert.ToSingle(sum)) * Convert.ToSingle(fourNum));
float angle3 = Convert.ToSingle((360 / Convert.ToSingle(sum)) * Convert.ToSingle(fiveNum));
g.FillPie(brush2, piex, piey, piew, pieh, 0, angle1);
g.FillPie(brush3, piex, piey, piew, pieh, angle1, angle2);
g.FillPie(brush4, piex, piey, piew, pieh, angle1 + angle2, angle3);
g.DrawRectangle(pen1, 50, 300, 310, 130);
g.FillRectangle(brush2, 90, 320, 20, 10);
g.DrawString(string.Format("3月份销量占比:{0:P2}", Convert.ToSingle(threeNum) / Convert.ToSingle(sum)), font2, brush2, 120, 320);
g.FillRectangle(brush3, 90, 360, 20, 10);
g.DrawString(string.Format("4月份销量占比:{0:P2}", Convert.ToSingle(fourNum) / Convert.ToSingle(sum)), font2, brush2, 120, 360);
g.FillRectangle(brush4, 90, 400, 20, 10);
g.DrawString(string.Format("5月份销量占比:{0:P2}", Convert.ToSingle(fiveNum) / Convert.ToSingle(sum)), font2, brush2, 120, 400);
this.groupBox1.Text = "饼状图";
this.pictureBox1.Width = bitmap.Width;
this.pictureBox1.Height = bitmap.Height;
this.pictureBox1.BackgroundImage = bitmap;
}
private void BarMap()//柱状图
{
int[] saleNum = { 300, 500, 400 };
int sum = saleNum[0]+ saleNum[1]+ saleNum[2];
float[] Y_Num ={ Convert.ToSingle(saleNum[0]) / Convert.ToSingle(sum),Convert.ToSingle(saleNum[1]) / Convert.ToSingle(sum),
Convert.ToSingle(saleNum[2]) / Convert.ToSingle(sum) };
int height = pictureBox1.Height, width = pictureBox1.Width;
Bitmap image = new Bitmap(width, height);
//创建Graphics类对象
Graphics g = Graphics.FromImage(image);
try
{
//清空图片背景色
g.Clear(Color.White);
Font font = new Font("Arial", 10, FontStyle.Regular);
Font font1 = new Font("宋体", 20, FontStyle.Bold);
LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height),Color.Blue, Color.BlueViolet, 1.2f, true);
Font font2 = new System.Drawing.Font("Arial", 10, FontStyle.Bold);
SolidBrush mybrush = new SolidBrush(Color.Red);
SolidBrush mybrush2 = new SolidBrush(Color.Green);
Pen mypen = new Pen(brush, 1);
//绘制线条
//绘制横向线条
int x = 100;
Pen mypen1 = new Pen(Color.Blue, 2);
x = 60;
g.DrawLine(mypen1, x, 0, x, 300);
//绘制纵向线条
int y = 0;
for (int i = 0; i <11; i++)
{
g.DrawLine(mypen, 45, y, 60, y);
y = y + 30;
}
g.DrawLine(mypen1, 60, y-30, 620, y-30);
//x轴
String[] n = { "3月份", "4月份", "5月份"};
x = 100;
for (int i = 0; i < 3; i++)
{
g.DrawString(n[i].ToString(), font, Brushes.Blue, x, 300); //设置文字内容及输出位置
Console.WriteLine(300 - Y_Num[i] * 100 * 3);
g.FillRectangle(mybrush, x, 300 - Y_Num[i] * 100 * 3, 20, Y_Num[i] * 100 * 3);
g.DrawString(Y_Num[i].ToString(), font2, Brushes.Green, x, 300 - Y_Num[i] * 100 * 3 - 15);
x = x + 100;
}
//y轴
String[] m = {"0","0.10","0.20", "0.30", "0.40", "0.50", "0.60", "0.70", " 0.80"," 0.90", " 1.00" };
y = 0;
for (int i = 10; i >= 0; i--)
{
g.DrawString(m[i].ToString(), font, Brushes.Blue, 20, y); //设置文字内容及输出位置
y = y + 30;
}
//绘制标识
Font font3 = new System.Drawing.Font("Arial", 10, FontStyle.Regular);
g.DrawRectangle(new Pen(Brushes.Blue), 170, 390, 250, 50); //绘制范围框
g.FillRectangle(Brushes.Red, 200, 410, 20, 10); //绘制小矩形
g.DrawString("月销量占比", font3, Brushes.Red, 292, 408);
this.button1.Text = "查看饼状图";
this.groupBox1.Text = "柱状图";
this.pictureBox1.Width = image.Width;
this.pictureBox1.Height = image.Height;
this.pictureBox1.BackgroundImage = image;
}
catch { }
}
private void Button1_Click(object sender, EventArgs e)
{
BitMap();
this.button1.Visible =false;//隐藏button
}
}
}
来源:https://blog.csdn.net/qq_15042311/article/details/89724877


猜你喜欢
- 这篇文章中我们来继续学习Picasso中还提供了哪些扩展功能,一个好的框架一定是扩展性强的,你需要的我刚好有。下面看一下都提供了哪些扩展功能
- Android 自定义按钮点击事件和长按事件对比一个按钮同时实现点击和长按事件,有时候会有冲突,我们针对这一现象来自定义按钮来区
- 仿水波纹流球进度条控制器,Android实现高端大气的主流特效,供大家参考,具体内容如下效果图:CircleView这里主要是实现中心圆以及
- 我已经很精简了,两篇(Spring Boot启动过程(一)、spring Boot启动过程(二))依然没写完,接着来。refreshCont
- 1:Group的功能Group可以管理一组节点Group可以对管理的节点进行增删改查的操作Group可以管理节点的属性1.2:看看JDKSE
- 该方法把该字符串转换成一个新的字符数组。 String str="abcdefg"; char a[]; a=str.t
- 命名空间using EnvDTE;using EnvDTE80;private DTE2 _applicationObject;
- 在开发中,我们会遇到将不同组织架构合并成tree这种树状结构,那么如果做呢?实际上,我们也可以理解为如何将拥有父子关系的list转成树形结构
- 由于项目需要在NDK中使用网络开发,对于c语言网络开发来说,libcurl库是个很不错的选择,但android系统中并没有自带该库,所以就得
- 接着上一篇进行学习java文件上传下载1。五、断点续传 对于熟用QQ的程序员,QQ的断点续传功能应该是印象很深刻的。因为它很实用也
- 在 Android 手机中内置了一款高性能 webkit 内核浏览器, SDK 中封装为一个叫做 WebView 组件。 WebView 类
- 最近我尝试使用ViewPager+GridView实现的,看起来一切正常,废话不多说,具体代码如下:如图是效果图 首先分析下思路1
- 首先,我们假设这样一个场景:一个ViewPager里面嵌套一个ViewPager,内部滑动方向和外部滑动方向一样时,该怎么解决这一冲突呢?针
- Android 遍历SDCARD的文件夹并显示目录信息private String mResult = new String(); priv
- 模板方法模式模板方法模式法(Template Method)定义一个操作中的算法骨架,而将算法的一些步骤延迟到子类中,使得子类可以不改变该算
- DialogFragment的基本用法1. 创建DialogFragmentpublic class DialogA extends Dia
- 前言: 上图的报错信息相信大部分程序员都遇到过,奇怪的是虽然代码报错,但丝毫不影响程序的正常执行,也就是虽然编译器 IDEA 报错
- 公司在使用定时任务的时候,使用的是spring scheduled。代码如下:@EnableSchedulingpublic class T
- 用来练手还是不错的,分享大家看一下,还是一些新颖点的!哈哈 就是自定义DataGridView,方便每个功能部分调用!简单!再次重
- 1.概述Spring MVC是Spring Framework的一部分,是基于Java实现MVC的轻量级Web框架。Spring MVC的特