Class StringChartData
Represents the string literals chart data. This type of chart data holds a series of strings as data.
Inheritance
System.Object
StringChartData
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 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 type of chart data.
Declaration
public ChartDataType ChartDataType { get; }
Property Value
ChartDataType
|
Implements
StringLiterals
Gets the string chart data.
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. |