Class NumericChartData
Stores a sequence of numeric values for plotting; use with series that consume quantitative data.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class NumericChartData : IChartData
Constructors
NumericChartData(IEnumerable<Double>)
Initializes a new instance of the NumericChartData class.
Declaration
public NumericChartData(IEnumerable<double> numericLiterals)
Parameters
|
System.Collections.Generic.IEnumerable<System.Double>
numericLiterals
|
Properties
ChartDataType
Gets the chart data kind, identifying this instance as numeric literals.
Declaration
public ChartDataType ChartDataType { get; }
Property Value
|
ChartDataType
|
Implements
NumericLiterals
Gets the enumerable of numeric values provided to the consuming series.
Declaration
public IEnumerable<double> NumericLiterals { get; }
Property Value
|
System.Collections.Generic.IEnumerable<System.Double>
|
Methods
Clone()
Creates a deep copy of the object.
Declaration
public IChartData Clone()
Returns
|
IChartData
The deep copy of the object. |