Devexpress web图表 柱状图 竖排

Posted 开发软件

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Devexpress web图表 柱状图 竖排相关的知识,希望对你有一定的参考价值。

 1  var lookup = list.ToLookup(x => x.FULLNAME);
 2             if (lookup.Count > 0)
 3             {
 4                 webChartControl.Height = new Unit(lookup.Count * 200);
 5             }
 6             XYDiagram diagram = (XYDiagram)webChartControl.Diagram;
 7             diagram.DefaultPane.Visible = false;
 8             int i = 0;
 9             foreach (var item in lookup)
10             {
11                 var pane = new XYDiagramPane();
12                 diagram.Panes.Add(pane);
13                 var temp = webChartControl.Series[0].Clone() as Series;
14                 
15                 var view = temp.View as SideBySideBarSeriesView;
16                 
17                 view.Pane = pane;
18                 var sums = from l in item group l by l.SPENT_ON into g select new { SPENT_ON = g.Key, HOURS = g.Sum(x => x.HOURS) };
19                 temp.DataSource = sums;
20                 temp.LegendText = item.Key;
21                 webChartControl.Series.Add(temp);
22                 
23             }

 

以上是关于Devexpress web图表 柱状图 竖排的主要内容,如果未能解决你的问题,请参考以下文章

DevExpress ChartControl 柱状图的使用

DevExpress 控件 Winform添加柱状图

📈📈📈📈📈iOS 图表框架 AAChartKit ---强大的高颜值数据可视化图表框架,支持柱状图条形图折线图曲线(代码

c#winform怎么做月收入柱状图

图表框架HelloCharts柱状图

echarts_部分图表配置简介_横向柱状图