Interface IChartSeriesCategory
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public interface IChartSeriesCategory
Methods
GetCategory(Int32)
Returns the Category value of the series at the specified point index.
Declaration
string GetCategory(int xIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | xIndex | The index value of the point. |
Returns
Type | Description |
---|---|
System.String | Category value. |
GetY(Int32)
Returns the Y values of the series at the specified point index.
Declaration
double[] GetY(int xIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | xIndex | The index value of the point. |
Returns
Type | Description |
---|---|
System.Double[] | Y values at specified index. |
Events
Changed
Event that should be raised by any implementation of this interface if data that it holds changes. This will cause the chart to be updated accordingly.
Declaration
event ListChangedEventHandler Changed
Event Type
Type |
---|
System.ComponentModel.ListChangedEventHandler |