Class StringChartData
Stores a sequence of string values for use as category labels or series items in charts.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class StringChartData : IChartData
Constructors
StringChartData(IEnumerable<String>)
Initializes a new instance of the StringChartData class.
Declaration
public StringChartData(IEnumerable<string> stringLiterals)
Parameters
|
System.Collections.Generic.IEnumerable<System.String>
stringLiterals
|
Properties
ChartDataType
Gets the chart data kind, identifying this instance as string literals.
Declaration
public ChartDataType ChartDataType { get; }
Property Value
|
ChartDataType
|
Implements
StringLiterals
Gets the enumerable of string values provided to the consuming series.
Declaration
public IEnumerable<string> StringLiterals { get; }
Property Value
|
System.Collections.Generic.IEnumerable<System.String>
|
Methods
Clone()
Creates a deep copy of the object.
Declaration
public IChartData Clone()
Returns
|
IChartData
The deep copy of the object. |