New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public class StringChartData : IChartData

Inheritance: objectStringChartData

Implements: IChartData

Constructors

Initializes a new instance of the StringChartData class.

C#
public StringChartData(IEnumerable<string> stringLiterals)
Parameters:stringLiteralsIEnumerable<string>

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 string literals.

C#
public ChartDataType ChartDataType { get; }

Implements: IChartData.ChartDataType

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

C#
public IEnumerable<string> StringLiterals { get; }