New to Telerik Document ProcessingStart a free 30-day trial

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

Constructors

Initializes a new instance of the NumericChartData class.

C#
public NumericChartData(IEnumerable<double> numericLiterals)
Parameters:numericLiteralsIEnumerable<double>

Methods

Creates a deep copy of the object.

C#
public IChartData Clone()
Returns:

IChartData

The deep copy of the object.

Implements: IChartData.Clone()

Properties

Gets the chart data kind, identifying this instance as numeric literals.

C#
public ChartDataType ChartDataType { get; }

Implements: IChartData.ChartDataType

Gets the enumerable of numeric values provided to the consuming series.

C#
public IEnumerable<double> NumericLiterals { get; }