• 大小: 42KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-12
  • 语言: C#
  • 标签: winform  

资源简介

winform 累计条形图(横向柱状图)

资源截图

代码片段和文件信息

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.Windows.Forms.DataVisualization.Charting;

namespace MsChartDemo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            //定义一个表,并添加数据
            DataTable tbl = new DataTable();

            DataColumn c1 = new DataColumn(“c1“);
            DataColumn c2 = new DataColumn(“c2“);
            DataColumn c3 = new DataColumn(“c3“);
            tbl.Columns.Add(c1);
            tbl.Columns.Add(c2);
            tbl.Columns.Add(c3);

            DataRow r1 = tbl.NewRow();
            r1[“c1“] = “1“;
            r1[“c2“] = 60;
            r1[“c3“] = 20;
            tbl.Rows.Add(r1);

            DataRow r2 = tbl.NewRow();
            r2[“c1“] = “2“;
            r2[“c2“] = 10;
            r2[“c3“] = 5;
            tbl.Rows.Add(r2);

            //设置Chart样式
            Series series1 = new Series();
            series1.ChartType = SeriesChartType.StackedBar;        
            chart1.Series.Add(series1);
            Series series2 = new Series();
            series2.ChartType = SeriesChartType.StackedBar;
            chart1.Series.Add(series2);

            //绑定字段
            chart1.Series[1].Points.DataBind(tbl.DefaultView “c1“ “c2“ ““);
            chart1.Series[0].Points.DataBind(tbl.DefaultView “c1“ “c3“ ““);

            //设置名称
            chart1.Series[0].Name = “Rank A“;
            chart1.Series[1].Name = “Rank B“;

            //设置条形图中是否显示数字
            chart1.Series[0].IsValueShownAsLabel = true;
            chart1.Series[1].IsValueShownAsLabel = true;

            //是否开启3D模式
            chart1.ChartAreas[0].Area3Dstyle.Enable3D = false;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       9728  2014-04-18 14:07  MsChartDemo\MsChartDemo\bin\Debug\MsChartDemo.exe

     文件      24064  2014-04-18 14:07  MsChartDemo\MsChartDemo\bin\Debug\MsChartDemo.pdb

     文件      11600  2014-04-18 14:07  MsChartDemo\MsChartDemo\bin\Debug\MsChartDemo.vshost.exe

     文件        490  2010-03-17 22:39  MsChartDemo\MsChartDemo\bin\Debug\MsChartDemo.vshost.exe.manifest

     文件       2090  2014-04-18 14:07  MsChartDemo\MsChartDemo\Form1.cs

     文件       2703  2014-04-18 13:44  MsChartDemo\MsChartDemo\Form1.Designer.cs

     文件       5817  2014-04-18 13:44  MsChartDemo\MsChartDemo\Form1.resx

     文件       3749  2014-04-18 11:27  MsChartDemo\MsChartDemo\MsChartDemo.csproj

     文件       5226  2014-04-18 11:46  MsChartDemo\MsChartDemo\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6334  2014-04-18 14:07  MsChartDemo\MsChartDemo\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        302  2014-04-18 13:44  MsChartDemo\MsChartDemo\obj\x86\Debug\GenerateResource.read.1.tlog

     文件       1310  2014-04-18 13:44  MsChartDemo\MsChartDemo\obj\x86\Debug\GenerateResource.write.1.tlog

     文件        640  2014-04-18 14:07  MsChartDemo\MsChartDemo\obj\x86\Debug\MsChartDemo.csproj.FileListAbsolute.txt

     文件       9728  2014-04-18 14:07  MsChartDemo\MsChartDemo\obj\x86\Debug\MsChartDemo.exe

     文件        180  2014-04-18 13:44  MsChartDemo\MsChartDemo\obj\x86\Debug\MsChartDemo.Form1.resources

     文件      24064  2014-04-18 14:07  MsChartDemo\MsChartDemo\obj\x86\Debug\MsChartDemo.pdb

     文件        180  2014-04-18 11:47  MsChartDemo\MsChartDemo\obj\x86\Debug\MsChartDemo.Properties.Resources.resources

     文件       8683  2014-04-18 11:47  MsChartDemo\MsChartDemo\obj\x86\Debug\ResolveAssemblyReference.cache

     文件        492  2014-04-18 10:55  MsChartDemo\MsChartDemo\Program.cs

     文件       1354  2014-04-18 10:42  MsChartDemo\MsChartDemo\Properties\AssemblyInfo.cs

     文件       2873  2014-04-18 10:42  MsChartDemo\MsChartDemo\Properties\Resources.Designer.cs

     文件       5612  2014-04-18 10:42  MsChartDemo\MsChartDemo\Properties\Resources.resx

     文件       1097  2014-04-18 10:42  MsChartDemo\MsChartDemo\Properties\Settings.Designer.cs

     文件        249  2014-04-18 10:42  MsChartDemo\MsChartDemo\Properties\Settings.settings

     文件        875  2014-04-18 10:43  MsChartDemo\MsChartDemo.sln

    ..A..H.     20480  2014-04-18 14:07  MsChartDemo\MsChartDemo.suo

     目录          0  2014-04-18 10:42  MsChartDemo\MsChartDemo\obj\x86\Debug\TempPE

     目录          0  2014-04-18 14:07  MsChartDemo\MsChartDemo\obj\x86\Debug

     目录          0  2014-04-18 10:46  MsChartDemo\MsChartDemo\bin\Debug

     目录          0  2014-04-18 10:55  MsChartDemo\MsChartDemo\bin\Release

............此处省略9个文件信息

评论

共有 条评论