Class
NumericChartData

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: IChartData

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

ChartDataType

Implements IChartData.ChartDataType

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

IChartData

The deep copy of the object.

Implements IChartData.Clone()