Class ChartSeriesCollectionChangedEventArgs
Argument that is to be used with the Changed event.
Inheritance
System.Object
System.EventArgs
ChartSeriesCollectionChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public class ChartSeriesCollectionChangedEventArgs : EventArgs
Constructors
ChartSeriesCollectionChangedEventArgs(ChartSeriesCollectionChangeType)
Constructor.
Declaration
public ChartSeriesCollectionChangedEventArgs(ChartSeriesCollectionChangeType changeType)
Parameters
Type | Name | Description |
---|---|---|
ChartSeriesCollectionChangeType | changeType | The type of change that had occurred in the collection. |
ChartSeriesCollectionChangedEventArgs(ChartSeriesCollectionChangeType, ChartSeries)
Constructor.
Declaration
public ChartSeriesCollectionChangedEventArgs(ChartSeriesCollectionChangeType changeType, ChartSeries series)
Parameters
Type | Name | Description |
---|---|---|
ChartSeriesCollectionChangeType | changeType | The type of change that had occurred in the collection. |
ChartSeries | series | The series. |
Properties
ChangeType
Returns the type of change that had occurred in the collection.
Declaration
public ChartSeriesCollectionChangeType ChangeType { get; }
Property Value
Type |
---|
ChartSeriesCollectionChangeType |
Series
Gets the series.
Declaration
public ChartSeries Series { get; }
Property Value
Type | Description |
---|---|
ChartSeries | The series. |
Methods
CreateAddedEvent(ChartSeries)
Creates the Added event arguments.
Declaration
public static ChartSeriesCollectionChangedEventArgs CreateAddedEvent(ChartSeries series)
Parameters
Type | Name | Description |
---|---|---|
ChartSeries | series | The series. |
Returns
Type |
---|
ChartSeriesCollectionChangedEventArgs |
CreateChangedEvent(ChartSeries)
Creates the Changed event arguments.
Declaration
public static ChartSeriesCollectionChangedEventArgs CreateChangedEvent(ChartSeries series)
Parameters
Type | Name | Description |
---|---|---|
ChartSeries | series | The series. |
Returns
Type |
---|
ChartSeriesCollectionChangedEventArgs |
CreateRemovedEvent(ChartSeries)
Creates the Removed event arguments.
Declaration
public static ChartSeriesCollectionChangedEventArgs CreateRemovedEvent(ChartSeries series)
Parameters
Type | Name | Description |
---|---|---|
ChartSeries | series | The series. |
Returns
Type |
---|
ChartSeriesCollectionChangedEventArgs |
CreateResetEvent()
Creates the Reset event arguments.
Declaration
public static ChartSeriesCollectionChangedEventArgs CreateResetEvent()
Returns
Type | Description |
---|---|
ChartSeriesCollectionChangedEventArgs | The new ChartSeriesCollectionChangedEventArgs instance |