C#在winform平台构建堆叠柱状图

前言

之前在网上找了很多关于状态图的资料,但是很少是在winform上实现的。其实堆叠柱状图是来自于PPT的一种数据统计方式,展示给用户直观的图片印象。而C#很多时候要展现比较精美的界面都采用WPF来实现,像winform的技术一直没有更新,控件中只有老旧的chart控件,很难实现我们的需求,因此在winform平台上要实现堆叠柱状图需要引入第三方插件,调用的是百度开源的echart
echart官网:
https://www.echartsjs.com/examples/zh/index.html

准备

  • 1,首先在bin文件夹中下载添加echarts.jsecharts.min.js文件,echarts.min.js是需要自己在官网定制的。可以参考:https://blog.csdn.net/weixin_42528089/article/details/95487734

  • 2,在winform窗口添加WebBrowser控件,属性Dock可以选在Fill填充整个窗口,我选择的是None可以自定义拉伸尺寸。下面是界面展示:

    主界面.png

  • 3,开始添加各功能模块的内容:

      using System;
      using System.Collections.Generic;
      using System.ComponentModel;
      using System.Data;
      using System.Drawing;
      using System.IO;
      using System.Linq;
      using System.Text;
      using System.Threading.Tasks;
      using System.Windows.Forms;
    
      namespace MyEchart
      {
          //设置Com对外可访问
          [System.Runtime.InteropServices.ComVisible(true)]
          public partial class Form1 : Form
          {
      
              /// <summary>
              /// 根目录
              /// </summary>
              string str = System.Environment.CurrentDirectory;
    
              public Form1()
              {
                  InitializeComponent();
                  //初始化浏览器
                  this.initWebBrowser();
                  //加载 文件
                  this.getAllHtmlFile();
              }
    
              private void button1_Click(object sender, EventArgs e)
              {
                  HTML.AddHtml("index1");
              }
    
              private void Form1_FormClosing(object sender, FormClosingEventArgs e)
              {
                  this.webBrowser1.Dispose();
              }
    
              private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
              {
                  this.webBrowser1.Url = new Uri(str + "\\" + comboBox1.Text.Trim());
              }
    
              private void button2_Click(object sender, EventArgs e)
              {
                  comboBox1.Items.Clear();
                  this.getAllHtmlFile();
              }
              /// <summary>
              /// 刷新
              /// </summary>
              /// <param name="sender"></param>
              /// <param name="e"></param>
              private void button3_Click(object sender, EventArgs e)
              {
                  this.webBrowser1.Refresh();
              }
    
              /// <summary>
              /// 获取html文件
              /// </summary>
              private void getAllHtmlFile()
              {
                  //获取指定文件夹的所有文件
                  string[] paths = Directory.GetFiles(str);
                  foreach (var item in paths)
                  {
                      //获取文件后缀名
                      string extension = Path.GetExtension(item).ToLower();
                      if (extension == ".html")
                      {
                          comboBox1.Items.Add(Path.GetFileName(item));
                      }
                  }
    
                  if (comboBox1.Items.Count > 0)
                  {
                      comboBox1.SelectedIndex = 0;
                      this.webBrowser1.Url = new Uri(str + "\\" + comboBox1.Text.Trim());
                  }
              }
    
              private void Form1_Load(object sender, EventArgs e)
              {
                  //浏览器url 取到index.html页面
                  //this.webBrowser1.Url = new Uri(str + "\\index.html");
                  //if (comboBox1.Items.Count > 0)
                  //{
                  //    comboBox1.SelectedIndex = 0;
                  //    this.webBrowser1.Url = new Uri(str +"\\"+ comboBox1.Text.Trim());
                  //}
              }
    
              /// <summary>
              /// 初始化浏览器
              /// </summary>
              private void initWebBrowser()
              {
                  //防止 WebBrowser 控件打开拖放到其上的文件。
                  webBrowser1.AllowWebBrowserDrop = false;
    
                  //防止 WebBrowser 控件在用户右击它时显示其快捷菜单.
                  webBrowser1.IsWebBrowserContextMenuEnabled = false;
    
                  //以防止 WebBrowser 控件响应快捷键。
                  webBrowser1.WebBrowserShortcutsEnabled = false;
    
                  //以防止 WebBrowser 控件显示脚本代码问题的错误信息。
                  webBrowser1.ScriptErrorsSuppressed = true;
    
                  //(这个属性比较重要,可以通过这个属性,把WINFROM中的变量,传递到JS中,供内嵌的网页使用;但设置到的类型必须是COM可见的,所以要设置     [System.Runtime.InteropServices.ComVisibleAttribute(true)],因为我的值设置为this,所以这个特性要加载窗体类上)
                  webBrowser1.ObjectForScripting = this;
              }
          }
      }
    

同时,为了可以添加HTML文件和修改HTML,增加HTML.cs文件,源代码如下:

    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Text;

    namespace MyEchart
    {
        public struct HTML
        {
            public static void EditHtml(string fileName)
            {
                Stream myStream = new FileStream(fileName, FileMode.Open);
                //Encoding encode = System.Text.Encoding.GetEncoding("GB2312");
                Encoding encode = System.Text.Encoding.GetEncoding("UTF-8");
                StreamReader myStreamReader = new StreamReader(myStream, encode);
                string strhtml = myStreamReader.ReadToEnd();
                //string stroutput = strhtml.Replace("&*平均温度*&", "要替换的内容平均温度");
                string stroutput = strhtml.Replace("123", "123456");
                myStream.Seek(0, SeekOrigin.Begin);
                myStream.SetLength(0);


                StreamWriter sw = new StreamWriter(myStream, encode);
                sw.Write(stroutput);
                sw.Flush();
                sw.Close();
                myStream.Close();
            }

            public static void AddHtml(string path)
            {
                try
                {
                    string fileName = path + ".html";
                    if (File.Exists(fileName))
                    {
                        File.Delete(fileName);
                    }

                    using (StreamWriter sw = new StreamWriter(fileName, false))
                    {
                        //sw.WriteLine("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
                        //sw.WriteLine("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
                        //sw.WriteLine("<head>");
                        //sw.WriteLine("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />");
                        //sw.WriteLine("<title> </title>");
                        //sw.WriteLine("</head>");
                        //sw.WriteLine("<body>");
                        //sw.WriteLine("<img src=" + path + ">");
                        //sw.WriteLine("</body>");
                        //sw.WriteLine("</html>");

                        sw.WriteLine("<!DOCTYPE html>");
                        sw.WriteLine("<html>");
                        sw.WriteLine("<head>");
                        sw.WriteLine("    <meta charset=\"utf-8\">");
                        sw.WriteLine("    <title>ECharts</title>");
                        sw.WriteLine("    <!-- 引入 echarts.js -->");
                        sw.WriteLine("    <script src=\"echarts.js\"></script>");
                        sw.WriteLine("</head>");
                        sw.WriteLine("<body>");
                        sw.WriteLine("    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->");
                        sw.WriteLine("    <div id=\"main\" style=\"width: 1132px;height:516px;\"></div>");
                        sw.WriteLine("    <script type=\"text/javascript\">");
                        sw.WriteLine("        // 基于准备好的dom,初始化echarts实例");
                        sw.WriteLine("        var myChart = echarts.init(document.getElementById('main'));");
                        sw.WriteLine("");
                        sw.WriteLine("");
                        sw.WriteLine("        option = {");
                        sw.WriteLine("    tooltip: {");
                        sw.WriteLine("        trigger: 'axis',");
                        sw.WriteLine("        axisPointer: {");
                        sw.WriteLine("            type: 'cross',");
                        sw.WriteLine("            crossStyle: {");
                        sw.WriteLine("                color: '#999'");
                        sw.WriteLine("            }");
                        sw.WriteLine("        }");
                        sw.WriteLine("    },");
                        sw.WriteLine("    toolbox: {");
                        sw.WriteLine("        feature: {");
                        sw.WriteLine("            dataView: {show: true, readOnly: false},");
                        sw.WriteLine("            magicType: {show: true, type: ['line', 'bar']},");
                        sw.WriteLine("            restore: {show: true},");
                        sw.WriteLine("            saveAsImage: {show: true}");
                        sw.WriteLine("        }");
                        sw.WriteLine("    },");
                        sw.WriteLine("    legend: {");
                        sw.WriteLine("        data:['蒸发量','降水量', '1']");
                        sw.WriteLine("    },");
                        sw.WriteLine("    xAxis: [");
                        sw.WriteLine("        {");
                        sw.WriteLine("            type: 'category',");
                        sw.WriteLine("            data: ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月'],");
                        sw.WriteLine("            axisPointer: {");
                        sw.WriteLine("                type: 'shadow'");
                        sw.WriteLine("            }");
                        sw.WriteLine("        }");
                        sw.WriteLine("    ],");
                        sw.WriteLine("    yAxis: [");
                        sw.WriteLine("        {");
                        sw.WriteLine("            type: 'value',");
                        sw.WriteLine("            name: '水量',");
                        sw.WriteLine("            min: 0,");
                        sw.WriteLine("            max: 250,");
                        sw.WriteLine("            interval: 50,");
                        sw.WriteLine("            axisLabel: {");
                        sw.WriteLine("                formatter: '{value} ml'");
                        sw.WriteLine("            }");
                        sw.WriteLine("        },");
                        sw.WriteLine("        {");
                        sw.WriteLine("            type: 'value',");
                        sw.WriteLine("            name: '温度',");
                        sw.WriteLine("            min: 0,");
                        sw.WriteLine("            max: 25,");
                        sw.WriteLine("            interval: 5,");
                        sw.WriteLine("            axisLabel: {");
                        sw.WriteLine("                formatter: '{value} °C'");
                        sw.WriteLine("            }");
                        sw.WriteLine("        }");
                        sw.WriteLine("    ],");
                        sw.WriteLine("    series: [");
                        sw.WriteLine("        {");
                        sw.WriteLine("            name:'蒸发量',");
                        sw.WriteLine("            type:'bar',");
                        sw.WriteLine("            stack:'堆叠',//堆叠柱状图在此设置成统一名称即可");
                        sw.WriteLine("            data:[2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3]");
                        sw.WriteLine("        },");
                        sw.WriteLine("        {");
                        sw.WriteLine("            name:'降水量',");
                        sw.WriteLine("            type:'bar',");
                        sw.WriteLine("            stack:'堆叠',//堆叠柱状图在此设置成统一名称即可");
                        sw.WriteLine("            data:[2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3]");
                        sw.WriteLine("        },");
                        sw.WriteLine("        {");
                        sw.WriteLine("            name:'1',");
                        sw.WriteLine("            type:'line',");
                        sw.WriteLine("            yAxisIndex: 1,");
                        sw.WriteLine("            data:[2.0, 2.2, 3.3, 4.5, 6.3, 10.2, 20.3, 23.4, 23.0, 16.5, 12.0, 6.2]");
                        sw.WriteLine("        }");
                        sw.WriteLine("    ]");
                        sw.WriteLine("};");
                        sw.WriteLine("");
                        sw.WriteLine("        // 使用刚指定的配置项和数据显示图表。");
                        sw.WriteLine("        myChart.setOption(option);");
                        sw.WriteLine("    </script>");
                        sw.WriteLine("</body>");
                        sw.WriteLine("</html>");
                        sw.Close();
                    }
                }
                catch(ArithmeticException ex)
                {
                    Console.WriteLine(ex);
                }
            }
        }
    }

以上是构建的所有源代码,欢迎交流。

///////////////////////我是分割线*///////////////////////////
(2019年12月30日补充)

当然啦,我们看到的官网HTML文件是开源的,我们要想拿过来直接用,就要自己制作HTML文件了。

散点图.png

将左侧的源代码放进debug文件夹的准备生成的文件.txt中,使用以下代码转换便可得到HTML文件了。

        public static void MakOptionFile(string path)
        {
            //获取应用程序的当前工作目录
            string filepath = System.IO.Directory.GetCurrentDirectory();
            try
            {
                string fileName = path + ".txt";
                if (File.Exists(fileName))
                {
                    File.Delete(fileName);
                }
                using (StreamWriter sw = new StreamWriter(fileName, false))
                {
                    string[] strs = File.ReadAllLines(filepath+ @"\准备生成的文件.txt", System.Text.Encoding.GetEncoding("gb2312"));

                    foreach(string strTemp in strs)
                    {
                        sw.WriteLine("sw.WriteLine(\""+ strTemp + "\");");
                    }
                    sw.Close();
                }
            }
            catch (ArithmeticException ex)
            {
                Console.WriteLine(ex);
            }
        }

通过以上步骤,便可在winform平台创建堆叠柱状图了,按照惯例,在文章末尾贴上一张效果图吧。^ - ^


效果图.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容