Class
StringChartData

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

Constructors

StringChartData(IEnumerable<string>)

Initializes a new instance of the StringChartData class.

Declaration

cs-api-definition
public StringChartData(IEnumerable<string> stringLiterals)

Parameters

stringLiterals

IEnumerable<string>

Properties

ChartDataType

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

Declaration

cs-api-definition
public ChartDataType ChartDataType { get; }

Property Value

ChartDataType

Implements IChartData.ChartDataType

StringLiterals

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

Declaration

cs-api-definition
public IEnumerable<string> StringLiterals { get; }

Property Value

IEnumerable<string>

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()