C#-在柱形图的指定位置显示说明文字

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Imaging;
using System.Data.SqlClient;
namespace TextInColumn
{
    public partial class Frm_Main : Form
    {
        public Frm_Main()
        {
            InitializeComponent();
        }
        SqlConnection con;
        SqlCommand cmd;
        private void button1_Click(object sender, EventArgs e)
        {

        }
        private void Conn()
        {
            con = new SqlConnection("server=.;uid=sa;pwd=Server2012;database=db_TomeOne");
            con.Open();
        }
        private void ShowPic()
        {
            Conn();                                                //打开数据库
            using (cmd = new SqlCommand("SELECT TOP 3 * FROM tb_Rectangle order by t_Num desc", con))
            {
                SqlDataReader dr = cmd.ExecuteReader();                        //创建SqlDataReader对象
                Bitmap bitM = new Bitmap(this.panel1.Width, this.panel1.Height);    //创建画布
                Graphics g = Graphics.FromImage(bitM);                        //创建Graphics对象
                Pen p = new Pen(new SolidBrush(Color.SlateGray), 1.0f);            //创建Pen对象
                p.DashStyle = System.Drawing.Drawing2D.DashStyle.Dash;        //设置虚线
                g.Clear(Color.White);                                    //设置画布颜色
                for (int i = 0; i < 5; i++)
                {
                    //绘制水平线条
                    g.DrawLine(p, 50, this.panel1.Height - 20 - i * 20, this.panel1.Width - 40, this.panel1.Height - 20 - i * 20);
                    g.DrawString(Convert.ToString(i * 100), new Font("Times New Roman", 10, FontStyle.Regular), new SolidBrush(Color.Black), 20, this.panel1.Height - 27 - i * 20);                    //绘制商品的增长值
                }
                for (int j = 0; j < 4; j++)
                {
                    g.DrawLine(p, 50, this.panel1.Height - 20, 50, 20);            //绘制垂直线条
                    if (dr.Read())
                    {
                        int x, y, w, h;                                    //声明变量存储坐标和大小
                        g.DrawString(dr[0].ToString(), new Font("宋体", 9, FontStyle.Regular), new SolidBrush(Color.Black), 76 + 40 * j, this.panel1.Height - 16);                                        //绘制商品名称
                        x = 78 + 40 * j;                                    //X坐标
                        y = this.panel1.Height - 20 - Convert.ToInt32((Convert.ToDouble(Convert.ToDouble(dr[1].ToString()) * 20 / 100)));                                                        //Y坐标
                        w = 24;                                        //宽度
                        h = Convert.ToInt32(Convert.ToDouble(dr[1].ToString()) * 20 / 100);//高度
                        g.FillRectangle(new SolidBrush(Color.SlateGray), x, y, w, h);    //绘制柱形图
                        g.DrawString((h * 100 / 20).ToString(), new Font("宋体", 8, FontStyle.Bold), new SolidBrush(Color.Tomato), new Point(x + 4, y - 10));                                                //在柱形图指定的位置绘制文字
                    }
                }
                this.panel1.BackgroundImage = bitM;                        //显示绘制的图形
            }
        }

        private void button1_Click_1(object sender, EventArgs e)
        {
            ShowPic();
        }
    }
}

  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值