ClassChartSeriesItem
Represents the base element of RadChart's series.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.WinControls.RadChart.dll
Syntax:
[TypeConverter(typeof(ExpandableObjectConverter))]
public class ChartSeriesItem : RenderedObject, IChartingStateManagedItem, IChartingStateManager, IOrdering, ICloneable
Inheritance: objectStateManagedObjectRenderedObjectChartSeriesItem
Implements:
Inherited Members
Constructors
ChartSeriesItem()
Creates a new instance of the ChartSeriesItem class.
Declaration
public ChartSeriesItem()
ChartSeriesItem(ChartSeries)
Creates a new instance of the ChartSeriesItem class.
Declaration
public ChartSeriesItem(ChartSeries parent)
Parameters
parent
ChartSeriesItem(bool)
Creates a new instance of the empty ChartSeriesItem class.
ChartSeriesItem(double)
Creates a new instance of the ChartSeriesItem class.
ChartSeriesItem(double, double)
Creates a new instance of the ChartSeriesItem class.
ChartSeriesItem(double, double, StyleSeriesItem)
Creates a new instance of the ChartSeriesItem class.
Declaration
public ChartSeriesItem(double x, double y, StyleSeriesItem style)
Parameters
x
y
style
ChartSeriesItem(double, double, double, double)
Creates a new instance of the ChartSeriesItem class.
ChartSeriesItem(double, double, double, double, double, double)
Creates a new instance of the ChartSeriesItem class.
ChartSeriesItem(double, string)
Creates a new instance of the ChartSeriesItem class.
ChartSeriesItem(double, string, Color)
Creates a new instance of the ChartSeriesItem class.
ChartSeriesItem(double, string, Color, bool)
Creates a new instance of the ChartSeriesItem class.
Properties
ActiveRegion
Active region
Declaration
[Browsable(true)]
public ActiveRegion ActiveRegion { get; set; }
Property Value
Appearance
Link to visualization and design properties
Declaration
[Browsable(true)]
[SkinnableProperty]
public StyleSeriesItem Appearance { get; }
Property Value
Empty
Is series item contains empty value
Index
Index in items collection
Label
Item label
Declaration
[Browsable(true)]
[SkinnableProperty]
public SeriesItemLabel Label { get; }
Property Value
Name
ChartSeriesItem name
Declaration
[Browsable(true)]
public string Name { get; set; }
Property Value
Parent
Parent element
Declaration
[Browsable(false)]
public ChartSeries Parent { get; set; }
Property Value
PointAppearance
Point appearance settings
Declaration
[Browsable(true)]
[SkinnableProperty]
public StyleMarkerSeriesPoint PointAppearance { get; }
Property Value
Visible
Specifies whether the series item should be rendered.
XValue
Main X value
Declaration
[TypeConverter(typeof(DoubleConverter2))]
public double XValue { get; set; }
Property Value
XValue2
Second x value for item
Declaration
[TypeConverter(typeof(DoubleConverter2))]
[Browsable(true)]
public double XValue2 { get; set; }
Property Value
YValue
Main Y value for item
Declaration
[TypeConverter(typeof(DoubleConverter2))]
[Browsable(true)]
[Bindable(true)]
public double YValue { get; set; }
Property Value
YValue2
Second y value for item
Declaration
[TypeConverter(typeof(DoubleConverter2))]
public double YValue2 { get; set; }
Property Value
YValue3
Third y value for item (could be used in CandleStick charts as High value)
Declaration
[TypeConverter(typeof(DoubleConverter2))]
public double YValue3 { get; set; }
Property Value
Methods
Clone()
Clone this object
Declaration
public object Clone()
Returns
New instance of ChartSeriesItem class that is copy of this object
Implements
LoadViewState(object)
Loading ViewState data
Declaration
protected override void LoadViewState(object savedState)
Parameters
savedState
ViewState with data
Overrides
SaveViewState()
Saving ViewState data
Declaration
protected override object SaveViewState()
Returns
Saved in View state data
Overrides
TrackViewState()
Tracking ViewState data
Declaration
protected override void TrackViewState()
Overrides