当前位置: 首页 > news >正文

C# 使用zedgraph绘制 柱状图

1.下载zedGraph控件:http://download.csdn.net/detail/allisnew/322251

2.添加引用 zedGraph.dll

3.在工具箱的最后面添加常规控件--浏览--选择zedgraph.dll

4.编写如下初始化代码(也可以直接拖一个控件):


 

private ZedGraphControl zedGraphControl1 = new ZedGraphControl();

 this.zedGraphControl1.Location = new System.Drawing.Point(36, 48);
            this.zedGraphControl1.Name = "zedGraphControl1";
            this.zedGraphControl1.ScrollGrace = 0;
            this.zedGraphControl1.ScrollMaxX = 0;
            this.zedGraphControl1.ScrollMaxY = 0;
            this.zedGraphControl1.ScrollMaxY2 = 0;
            this.zedGraphControl1.ScrollMinX = 0;
            this.zedGraphControl1.ScrollMinY = 0;
            this.zedGraphControl1.ScrollMinY2 = 0;
            this.zedGraphControl1.Size = new System.Drawing.Size(427, 247);
            this.zedGraphControl1.TabIndex = 0;
            this.Controls.Add(zedGraphControl1);

5.编写绘图代码:

 private void ShowChart()
        {
            zedGraphControl1.GraphPane.CurveList.Clear();
            zedGraphControl1.GraphPane.GraphObjList.Clear();
            // clearing not teste


            GraphPane myPane = zedGraphControl1.GraphPane;


            myPane.Title.Text = "消费者学历统计";  //设计图表的标题
            myPane.XAxis.Title.Text = "学历类型"; //X轴标题
            myPane.YAxis.Title.Text = "人数"; //Y轴标题
            //      myPane.XAxis.Type = ZedGraph.AxisType.Date;
            // Date wont work in our case


            PointPairList PPLa = new PointPairList();
            PointPairList PPLb = new PointPairList();
            PointPairList PPLc = new PointPairList();
            PointPairList PPLd = new PointPairList();


            for (int i = 1; i < 2; i++)
            {
                PPLa.Add(i, i + 3);
                PPLb.Add(i + 1, i + 4);
                PPLc.Add(i + 2, i + 5);
                PPLd.Add(i + 3, i + 6);
            }


            // dragged drawing baritems out of forloop
            BarItem myBara = myPane.AddBar("A", PPLa, Color.Red);
            BarItem myBarb = myPane.AddBar("B", PPLb, Color.Blue);
            BarItem myBarc = myPane.AddBar("C", PPLc, Color.Gray);
            BarItem myBard = myPane.AddBar("D", PPLd, Color.Black);


            zedGraphControl1.AxisChange();
            zedGraphControl1.Refresh();//这句话非常重要,否则不会立即显示
        }


如需要横坐标显示文字:


   

 private void ShowChart()
        {
            zedGraphControl1.GraphPane.CurveList.Clear();
            zedGraphControl1.GraphPane.GraphObjList.Clear();
            // clearing not teste


            GraphPane myPane = zedGraphControl1.GraphPane;
            // 画图面版标题
            myPane.Title.Text = "收入统计";
            // 画图面版X标题
            myPane.XAxis.Title.Text = "区域";


            myPane.XAxis.Scale.Min = 0;
            //初始化数据
            PointPairList list = new PointPairList();
            PointPairList list2 = new PointPairList();
            PointPairList list3 = new PointPairList();


            for (int i = 0; i < 5; i++)这里的数量要和lable的一致,比如横坐标显示了5个lable,这里就要给5个
            {
                list.Add(i, i+1);
                list2.Add(i, i + 2);
                list3.Add(i, i + 3);
            }
            


            // 画图面版Y标题
            myPane.YAxis.Title.Text = "销售情况";
            //柱的画笔
            //    public BarItem AddBar(string 名称, IPointList 数据, Color 颜色);

            BarItem myCurve = myPane.AddBar("收入1", list, Color.Blue);
            BarItem myCurve1 = myPane.AddBar("收入2", list2, Color.Purple);
            BarItem myCurve2 = myPane.AddBar("收入3", list3, Color.YellowGreen);

            //myCurve.Bar.Fill = new Fill(Color.Blue, Color.White, Color.Blue);//渐变
           // BarItem myCurve2 = myPane.AddBar("买农药", list2, Color.Red);
           // myCurve2.Bar.Fill = new Fill(Color.Red, Color.White, Color.Red);
          //  BarItem myCurve3 = myPane.AddBar("买化肥", list3, Color.Green);
           // myCurve3.Bar.Fill = new Fill(Color.Green, Color.White, Color.Green);


            //myPane.XAxis.MajorTic.IsBetweenLabels = true;
            //XAxis标注
            string[] labels = { "产品1", "产品2", "产品3", "产品4", "产品5" };
            myPane.XAxis.Scale.TextLabels = labels;
            myPane.XAxis.Type = AxisType.Text;
            //图区以外的颜色
           // myPane.Fill = new Fill(Color.White, Color.FromArgb(200, 200, 255), 45.0f);
            //背景颜色
           // myPane.Chart.Fill = new Fill(Color.Red, Color.LightGoldenrodYellow, 45.0f);


            zedGraphControl1.AxisChange();
            zedGraphControl1.Refresh();
        }

相关文章:

  • [Web开发] 网页的浏览器兼容性测试工具
  • [Windows编程] 如何捕捉程序异常/crash 并生成 dump 文件
  • zed graph使用经验
  • vim语法高亮
  • vbscript脚本用二进制方式读写文件
  • 15个最佳Flash物理游戏
  • ARX 反回曲线上一定距离的点 函数
  • 2008主流数据库产品回顾与展望
  • ARX 沿着多段线绘制一定距离,递归执行
  • WinDBG 技巧: 显示GetLastError() 错误码 (!gle命令)
  • C# 窗体间传值总结
  • 诺基亚5800XM 承认质量缺陷
  • ASP.NET Web Application 中使用 Unity 依赖注入容器
  • ARX 多段线的合并
  • 参加ESB沙龙
  • CentOS学习笔记 - 12. Nginx搭建Centos7.5远程repo
  • Java 内存分配及垃圾回收机制初探
  • Javascript弹出层-初探
  • JavaScript异步流程控制的前世今生
  • JS题目及答案整理
  • linux学习笔记
  • orm2 中文文档 3.1 模型属性
  • PhantomJS 安装
  • Python - 闭包Closure
  • Python代码面试必读 - Data Structures and Algorithms in Python
  • vue 配置sass、scss全局变量
  • 聊聊directory traversal attack
  • 聊聊hikari连接池的leakDetectionThreshold
  • 山寨一个 Promise
  • 微信端页面使用-webkit-box和绝对定位时,元素上移的问题
  • 延迟脚本的方式
  • 通过调用文摘列表API获取文摘
  • ​​快速排序(四)——挖坑法,前后指针法与非递归
  • ​草莓熊python turtle绘图代码(玫瑰花版)附源代码
  • (C语言)编写程序将一个4×4的数组进行顺时针旋转90度后输出。
  • (ISPRS,2023)深度语义-视觉对齐用于zero-shot遥感图像场景分类
  • (办公)springboot配置aop处理请求.
  • (二)linux使用docker容器运行mysql
  • (二)正点原子I.MX6ULL u-boot移植
  • (附源码)node.js知识分享网站 毕业设计 202038
  • (介绍与使用)物联网NodeMCUESP8266(ESP-12F)连接新版onenet mqtt协议实现上传数据(温湿度)和下发指令(控制LED灯)
  • (每日持续更新)jdk api之StringBufferInputStream基础、应用、实战
  • (一)基于IDEA的JAVA基础1
  • (原創) 是否该学PetShop将Model和BLL分开? (.NET) (N-Tier) (PetShop) (OO)
  • (转)Mysql的优化设置
  • (转)我也是一只IT小小鸟
  • **PHP分步表单提交思路(分页表单提交)
  • .apk 成为历史!
  • .NET CF命令行调试器MDbg入门(四) Attaching to Processes
  • .Net CF下精确的计时器
  • .net framework 4.0中如何 输出 form 的name属性。
  • .NET Micro Framework初体验(二)
  • .net MVC中使用angularJs刷新页面数据列表
  • .NET/C# 中设置当发生某个特定异常时进入断点(不借助 Visual Studio 的纯代码实现)
  • .NET开发不可不知、不可不用的辅助类(三)(报表导出---终结版)