skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Use Reports in Applications
    • System Requirements
    • Forums
    • Videos
    • Blogs
    • Submit a Ticket
    • FAQs
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now
Search all

Class ChartSeriesItem

Represents the base element of RadChart's series.

Inheritance
System.Object
StateManagedObject
RenderedObject
ChartSeriesItem
Inherited Members
RenderedObject.objectContainer
RenderedObject.GetOrder()
RenderedObject.SetOrder(Int32)
RenderedObject.Remove()
RenderedObject.BringForward()
RenderedObject.BringToFront()
RenderedObject.SendBackward()
RenderedObject.SendToBack()
RenderedObject.Container
StateManagedObject.IChartingStateManager.LoadViewState(Object)
StateManagedObject.IChartingStateManager.SaveViewState()
StateManagedObject.IChartingStateManager.TrackViewState()
StateManagedObject.CloneState()
StateManagedObject.SetDirty()
StateManagedObject.Dispose()
StateManagedObject.ViewStateIgnoresCase
StateManagedObject.IChartingStateManager.IsTrackingViewState
Namespace: Telerik.Reporting.Charting
Assembly: Telerik.Reporting.dll

Syntax

public class ChartSeriesItem : RenderedObject, IChartingStateManagedItem, IChartingStateManager, IDisposable, IOrdering, IActiveRegion, ICloneable

Constructors

ChartSeriesItem()

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem()

ChartSeriesItem(Boolean)

Creates a new instance of the empty ChartSeriesItem class.

Declaration
public ChartSeriesItem(bool isEmpty)
Parameters
System.Boolean isEmpty

ChartSeriesItem(Double)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double value)
Parameters
System.Double value

ChartSeriesItem(Double, Double)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double x, double y)
Parameters
System.Double x

System.Double y

ChartSeriesItem(Double, Double, Double, Double)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double x, double y, double x2, double y2)
Parameters
System.Double x

System.Double y

System.Double x2

System.Double y2

ChartSeriesItem(Double, Double, Double, Double, Double, Double)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double x, double y, double x2, double y2, double y3, double y4)
Parameters
System.Double x

System.Double y

System.Double x2

System.Double y2

System.Double y3

System.Double y4

ChartSeriesItem(Double, Double, StyleSeriesItem)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double x, double y, StyleSeriesItem style)
Parameters
System.Double x

System.Double y

StyleSeriesItem style

ChartSeriesItem(Double, String)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double value, string labelText)
Parameters
System.Double value

System.String labelText

ChartSeriesItem(Double, String, Color)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double value, string label, Color color)
Parameters
System.Double value

System.String label

System.Drawing.Color color

ChartSeriesItem(Double, String, Color, Boolean)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(double value, string label, Color color, bool exploded)
Parameters
System.Double value

System.String label

System.Drawing.Color color

System.Boolean exploded

ChartSeriesItem(ChartSeries)

Creates a new instance of the ChartSeriesItem class.

Declaration
public ChartSeriesItem(ChartSeries parent)
Parameters
ChartSeries parent

Properties

ActiveRegion

Active region

Declaration
public ActiveRegion ActiveRegion { get; set; }
Property Value
ActiveRegion

Implements
IActiveRegion.ActiveRegion

Appearance

Link to visualization and design properties

Declaration
[SkinnableProperty]
public StyleSeriesItem Appearance { get; }
Property Value
StyleSeriesItem

Empty

Is series item contains empty value

Declaration
public bool Empty { get; set; }
Property Value
System.Boolean

Index

Index in items collection

Declaration
public int Index { get; }
Property Value
System.Int32

Label

Item label

Declaration
[SkinnableProperty]
public SeriesItemLabel Label { get; }
Property Value
SeriesItemLabel

Name

ChartSeriesItem name

Declaration
public string Name { get; set; }
Property Value
System.String

Parent

Parent element

Declaration
public ChartSeries Parent { get; set; }
Property Value
ChartSeries

PointAppearance

Point appearance settings

Declaration
[SkinnableProperty]
public StyleMarkerSeriesPoint PointAppearance { get; }
Property Value
StyleMarkerSeriesPoint

Visible

Specifies whether the series item should be rendered.

Declaration
public bool Visible { get; set; }
Property Value
System.Boolean

XValue

Main X value

Declaration
public double XValue { get; set; }
Property Value
System.Double

XValue2

Second x value for item

Declaration
public double XValue2 { get; set; }
Property Value
System.Double

YValue

Main Y value for item

Declaration
public double YValue { get; set; }
Property Value
System.Double

YValue2

Second y value for item

Declaration
public double YValue2 { get; set; }
Property Value
System.Double

YValue3

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

Declaration
public double YValue3 { get; set; }
Property Value
System.Double

YValue4

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

Declaration
public double YValue4 { get; set; }
Property Value
System.Double

Methods

Clone()

Clone this object

Declaration
public object Clone()
Returns
System.Object

New instance of ChartSeriesItem class that is copy of this object

Dispose(Boolean)

Releases unmanaged and - optionally - managed resources

Declaration
protected override void Dispose(bool disposing)
Parameters
System.Boolean disposing

true to release both managed and unmanaged resources; false to release only unmanaged resources.

Overrides
StateManagedObject.Dispose(Boolean)

LoadViewState(Object)

Loading ViewState data

Declaration
protected override void LoadViewState(object savedState)
Parameters
System.Object savedState

ViewState with data

Overrides
StateManagedObject.LoadViewState(Object)

SaveViewState()

Saving ViewState data

Declaration
protected override object SaveViewState()
Returns
System.Object

Saved in View state data

Overrides
StateManagedObject.SaveViewState()

ToString()

Declaration
public override string ToString()
Returns
System.String

Overrides
StateManagedObject.ToString()

TrackViewState()

Tracking ViewState data

Declaration
protected override void TrackViewState()
Overrides
StateManagedObject.TrackViewState()
Getting Started
  • Install Now
  • Online Demos
Support Resources
  • Documentation
  • Knowledge Base
  • Videos
  • Reporting Samples Repository
  • Reporting Release History
Community
  • Forums
  • Blogs
  • Reporting Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.