NavigationOptionsBase.UseMouse Property
Specifies whether a user can use a mouse to zoom and scroll the chart.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
Type | Description |
---|---|
Boolean | true to allow using the mouse; otherwise, false. |
Remarks
The following code allows a user to use keyboard shortcuts, mouse operations, and touch gestures to zoom and scroll a chart:
<dxc:XYDiagram2D
EnableAxisXNavigation="True"
EnableAxisYNavigation="True">
<dxc:XYDiagram2D.NavigationOptions>
<dxc:NavigationOptions
UseKeyboard="True"
UseScrollBars="True"
UseMouse="True"
UseTouchDevice="True"/>
</dxc:XYDiagram2D.NavigationOptions>
</dxc:XYDiagram2D>
See Also