如何在Highcharts上包含更多关于系列的数据

juud5qan  于 2022-12-23  发布在  Highcharts
关注(0)|答案(1)|浏览(98)

我正在使用C# .NET下的Highcharts,我想包括更多的数据,包括和显示他们的系列。
系列的所有类别(ColumnSeriesData、PieSeriesData......)将我们限制到以下特定字段的数量:

public string ClassName { get; set; }
    public string Color { get; set; }
    public double? ColorIndex { get; set; }
    public Hashtable CustomFields { get; set; }
    public PieSeriesDataLabels DataLabels { get; set; }
    public string Description { get; set; }
    public PieSeriesDataDragDrop DragDrop { get; set; }
    public string Drilldown { get; set; }
    public PieSeriesDataEvents Events { get; set; }
    public string Id { get; set; }
    public double? Labelrank { get; set; }
    public double? LegendIndex { get; set; }
    public string Name { get; set; }
    public bool? Selected { get; set; }
    public bool? Sliced { get; set; }
    public double? Y { get; set; }

如何添加个性化字段?

v2g6jxz6

v2g6jxz61#

是的,Highcharts.NET或Highstock.NET中的每个类都包含CustomFields属性,您可以在其中定义稍后将在JS中抛出的字段。属性名称和值。

**API示例:**dotnet.highcharts.com/Help/Highcharts/html/class_highsoft_1_1_web_1_1_mvc_1_1_charts_1_1_spline_series.html#a911f05a5827c3d33cc5dceb79bb55b24

相关问题