New to Telerik UI for WinFormsStart a free 30-day trial

Represents the base element of RadChart's series.

Definition

Constructors

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem()

Creates a new instance of the empty ChartSeriesItem class.

C#
public ChartSeriesItem(bool isEmpty)
Parameters:isEmptybool

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(ChartSeries parent)
Parameters:parentChartSeries

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double x, double y, double x2, double y2, double y3, double y4)
Parameters:xdoubleydoublex2doubley2doubley3doubley4double

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double x, double y, double x2, double y2)
Parameters:xdoubleydoublex2doubley2double

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double x, double y, StyleSeriesItem style)
Parameters:xdoubleydoublestyleStyleSeriesItem

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double x, double y)
Parameters:xdoubleydouble

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double value, string label, Color color, bool exploded)
Parameters:valuedoublelabelstringcolorColorexplodedbool

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double value, string label, Color color)
Parameters:valuedoublelabelstringcolorColor

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double value, string labelText)
Parameters:valuedoublelabelTextstring

Creates a new instance of the ChartSeriesItem class.

C#
public ChartSeriesItem(double value)
Parameters:valuedouble

Properties

Active region

C#
[Browsable(true)]
public ActiveRegion ActiveRegion { get; set; }

Link to visualization and design properties

C#
[Browsable(true)]
[SkinnableProperty]
public StyleSeriesItem Appearance { get; }

Is series item contains empty value

C#
public bool Empty { get; set; }

Index in items collection

C#
[Browsable(false)]
public int Index { get; }

Item label

C#
[Browsable(true)]
[SkinnableProperty]
public SeriesItemLabel Label { get; }

ChartSeriesItem name

C#
[Browsable(true)]
public string Name { get; set; }

Parent element

C#
[Browsable(false)]
public ChartSeries Parent { get; set; }

Point appearance settings

C#
[Browsable(true)]
[SkinnableProperty]
public StyleMarkerSeriesPoint PointAppearance { get; }

Specifies whether the series item should be rendered.

C#
public bool Visible { get; set; }

Main X value

C#
[TypeConverter(typeof(DoubleConverter2))]
public double XValue { get; set; }

Second x value for item

C#
[TypeConverter(typeof(DoubleConverter2))]
[Browsable(true)]
public double XValue2 { get; set; }

Main Y value for item

C#
[TypeConverter(typeof(DoubleConverter2))]
[Browsable(true)]
[Bindable(true)]
public double YValue { get; set; }

Second y value for item

C#
[TypeConverter(typeof(DoubleConverter2))]
public double YValue2 { get; set; }

Third y value for item (could be used in CandleStick charts as High value)

C#
[TypeConverter(typeof(DoubleConverter2))]
public double YValue3 { get; set; }

Fourth y value for item (could be used in CandleStick charts as Low value)

C#
[TypeConverter(typeof(DoubleConverter2))]
public double YValue4 { get; set; }

Methods

Clone this object

C#
public object Clone()
Returns:

object

New instance of ChartSeriesItem class that is copy of this object

Implements: ICloneable.Clone()

Loading ViewState data

C#
protected override void LoadViewState(object savedState)
Parameters:savedStateobject

ViewState with data

Overrides: StateManagedObject.LoadViewState(object)

Saving ViewState data

C#
protected override object SaveViewState()
Returns:

object

Saved in View state data

Overrides: StateManagedObject.SaveViewState()

Tracking ViewState data

C#
protected override void TrackViewState()

Overrides: StateManagedObject.TrackViewState()