'Declaration
Public Event AnimationTransform As EventHandler(Of AnimationTransformEventArgs)
'Usage
Dim instance As C1FlexChart Dim handler As EventHandler(Of AnimationTransformEventArgs) AddHandler instance.AnimationTransform, handler
public event EventHandler<AnimationTransformEventArgs> AnimationTransform
public: event EventHandler<AnimationTransformEventArgs^>^ AnimationTransform
Event Data
The event handler receives an argument of type AnimationTransformEventArgs containing data related to this event. The following AnimationTransformEventArgs properties provide information specific to this event.
Property | Description |
---|---|
AxisType | Gets the axis type. |
Cancel | Whether to cancel the default animation. |
End | Gets the ending position. |
PointIndex | Get the current point index. |
Position | Gets the animation position (from 0.0 to 1.0). |
Series | Gets the current series. |
Start | Gets the startig position. |
State | Gets the animation state. |
Value | Gets or sets the value in data coordinates. |
See Also