NumericChartData
Class
Stores a sequence of numeric values for plotting; use with series that consume quantitative data.
Definition
Namespace:Telerik.Windows.Documents.Model.Drawing.Charts
Assembly:Telerik.Windows.Documents.Core.dll
Syntax:
C#
public class NumericChartData : IChartData
Inheritance: objectNumericChartData
Implements:
Constructors
Initializes a new instance of the NumericChartData class.
C#
public NumericChartData(IEnumerable<double> numericLiterals)
Methods
Creates a deep copy of the object.
Properties
Gets the chart data kind, identifying this instance as numeric literals.
C#
public ChartDataType ChartDataType { get; }
Implements:
Gets the enumerable of numeric values provided to the consuming series.
C#
public IEnumerable<double> NumericLiterals { get; }