ClassNumericChartData
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:
cs-api-definition
public class NumericChartData : IChartData
Inheritance: objectNumericChartData
Implements:
Constructors
NumericChartData(IEnumerable<double>)
Initializes a new instance of the NumericChartData class.
Declaration
cs-api-definition
public NumericChartData(IEnumerable<double> numericLiterals)
Parameters
numericLiterals
IEnumerable<double>
Properties
ChartDataType
Gets the chart data kind, identifying this instance as numeric literals.
Declaration
cs-api-definition
public ChartDataType ChartDataType { get; }
Property Value
Implements
NumericLiterals
Gets the enumerable of numeric values provided to the consuming series.
Declaration
cs-api-definition
public IEnumerable<double> NumericLiterals { get; }
Property Value
IEnumerable<double>
Methods
Clone()
Creates a deep copy of the object.
Declaration
cs-api-definition
public IChartData Clone()
Returns
The deep copy of the object.
Implements