Class NumericChartData
Represents the numeric literals chart data. This type of chart data holds a series of numbers as data.
Inheritance
System.Object
NumericChartData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 type of chart data.
Declaration
public ChartDataType ChartDataType { get; }
Property Value
ChartDataType
|
Implements
NumericLiterals
Gets the numeric chart data.
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. |