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