c# - 使用后面的代码创建堆积条形柱形图

标签 c# code-behind stacked

我需要创建一个堆积柱形图,如图所示。 X 轴:组件名称 Y 轴:错误数量 堆栈:对于每个组件,我需要创建堆栈图表来告诉我: ---> 对于每个组件类别(音频/视频),我需要说我有 x 个高、中、低、SHOWSTOPPER 错误。

我的数据格式为: 类别名称 || BUG 类型:数字 BUG 类型:数字 BUG 类型:数字 BUG 类型:数字

示例数据: 音频::=> 高:30 中:17 低:1 视频::=> 高:1 外设::=> 中:15 高:14 低:1 精彩表演:1 传感器::=> 中:2

上面显示的这些数据是通过一些 LINQ 查询创建的。所以字典里没有这个词。创建上述数据的代码:

var dbQuery = from bug in RawListData
              group bug by new { bug.category, bug.customer_priority } into grouped
              select new { 
                  Category = grouped.Key.category,
                  Priority = grouped.Key.customer_priority,
                  Count = grouped.Count()
              };

            var query = dbQuery.ToLookup(result => result.Category,
                                         result => new { result.Priority, result.Count });


            foreach (var result in query)
            {
                //Console.WriteLine("{0}: ", result.Key);
                System.Diagnostics.Debug.WriteLine(" : ", result.Key);
                foreach (var subresult in result)
                {
                    //Console.WriteLine("  {0}: {1}", subresult.Priority, subresult.Count);
                    System.Diagnostics.Debug.WriteLine("  {0}: {1}", subresult.Priority, subresult.Count);
                }
            }

请注意,某些类别没有针对每种错误类型的值。

我知道如何在 XAML 中执行此操作。我想在“代码隐藏”中执行此操作。对此的任何指示将不胜感激。我用来创建图表的代码是纯 XAML:

<asp:Chart ID="Chart2" runat="server" ImageLocation="~/FolderLocation/Chart_#SEQ(1000,0)" ImageStorageMode="UseImageLocation" ImageType="Png" IsSoftShadows="true">

      <series>
        <asp:Series Name="Championships" YValueType="Int32" ChartType="StackedColumn" > 
         <Points> 
            <asp:DataPoint AxisLabel="Audio" YValues="17" /> 
            <asp:DataPoint AxisLabel="Video" YValues="15" /> 
            <asp:DataPoint AxisLabel="Peripheral" YValues="6" />            
         </Points> 
        </asp:Series> 
        <asp:Series Name="Championships2" YValueType="Int32" ChartType="StackedColumn" > 
         <Points> 
            <asp:DataPoint AxisLabel="Audio" YValues="2" /> 
            <asp:DataPoint AxisLabel="Video" YValues="5" /> 
            <asp:DataPoint AxisLabel="Peripheral" YValues="16" /> 
         </Points> 
        </asp:Series> 
        <asp:Series Name="Championships3" YValueType="Int32" ChartType="StackedColumn" > 
         <Points> 
            <asp:DataPoint AxisLabel="Audio" YValues="10" /> 
            <asp:DataPoint AxisLabel="Video" YValues="3" /> 
            <asp:DataPoint AxisLabel="Peripheral" YValues="16" /> 

         </Points> 
        </asp:Series> 
        <asp:Series Name="Championships4" YValueType="Int32" ChartType="StackedColumn" > 
         <Points> 
            <asp:DataPoint AxisLabel="Audio" YValues="10" /> 
            <asp:DataPoint AxisLabel="Video" YValues="3" /> 
            <asp:DataPoint AxisLabel="Peripheral" YValues="16" /> 
         </Points> 
        </asp:Series> 
      </series>
            <chartareas>
                <asp:ChartArea Name="ChartArea1">
                    <Area3DStyle Enable3D="True" />
                </asp:ChartArea>
            </chartareas>
        </asp:Chart>

我还想显示每个堆栈组件上的错误数量。

如何通过编写代码而不是 XAML 来创建此堆叠图表?

最佳答案

您可以使用Highcharts女巫是纯 JavaScript,它们比 Microsoft 图表更具交互性。此外,通过使用 DotNet.Highcharts 在代码隐藏中创建它们也很容易。图书馆。以下是创建堆积柱形图的代码:

Highcharts chart = new Highcharts("chart")
            .InitChart(new Chart { DefaultSeriesType = ChartTypes.Column })
            .SetTitle(new Title { Text = "Stacked column chart" })
            .SetXAxis(new XAxis { Categories = new[] { "Championships 1", "Championships 2", "Championships 3", "Championships 4" } })
            .SetPlotOptions(new PlotOptions { Column = new PlotOptionsColumn { Stacking = Stackings.Normal } })
            .SetSeries(new[]
                       {
                           new Series { Name = "Audio", Data = new Data(new object[] { 17, 2, 10, 10 }) },
                           new Series { Name = "Video", Data = new Data(new object[] { 15, 5, 3, 3 }) },
                           new Series { Name = "Peripheral", Data = new Data(new object[] { 6, 16, 16, 16 }) }
                       });

这是代码的结果: This is the stacked column chart

您还可以观看 Highcharts 的现场演示 here .

有关如何安装和使用 DotNet.Highcharts 库的更多信息,您可以在 home page at CodePlex 上找到。您可以在 example project 中找到更多示例代码。

关于c# - 使用后面的代码创建堆积条形柱形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9591452/

相关文章:

c# - 一个按钮的 OnClientClick 和 Click 事件没有触发 - FireFox 中的问题

onclick - 单击dojox.charting.Chart时如何获取单击的系列名称?

r - 使用 ggplot2 堆积点图

c# - 在asp.net页面的代码后面指定图像按钮图像URL?

c# - 如何联合两个 List<T> 并将结果分配给第三个 List<T>?

c# - 无法解析属性 'CosmosDBAttribute.ConnectionStringSetting' 的值

c# - 如果您没有任何异步代码,您如何处理返回 Task 的第 3 方接口(interface)?

javascript - 当单选按钮更改时调用 Javascript 函数和代码隐藏中的函数

html - Div 不会扩展到 100% 宽度(在另一个 div 中彼此重叠)

c# - 如何模拟 .config 文件的 appSettings 部分的文件属性