Defines values that specify how the component responds to actions performed by the user.
Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf
SyntaxC#
Copy Code
|
|---|
public enum Behavior |
Visual Basic
Copy Code
|
|---|
Public Enum Behavior |
Members| Member name | Description | |
|---|---|---|
![]() |
AllowXDrag |
Allows dragging of chart points along the X axes. |
![]() |
AllowYDrag |
Allows dragging of chart points along the Y axes. |
![]() |
DoNothing |
The control does not respond to actions performed by the user. |
![]() |
ZoomChart |
The control responds to actions performed by the user by zooming the chart. |
RemarksThe values of the Behavior enumeration allow bitwise combination - for example you can allow dragging along both the X and Y axes.
See Also