Skip to main content
A newer version of this page is available. .
All docs
V21.2

HeatmapControl.EnableAxisYNavigation Property

Specifies whether a user can scroll and zoom the heatmap along the y-axis.

Namespace: DevExpress.Xpf.Charts.Heatmap

Assembly: DevExpress.Xpf.Charts.v21.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public bool EnableAxisYNavigation { get; set; }

Property Value

Type Description
Boolean

true if the heatmap can be scrolled and zoomed vertically (along an y-axis); otherwise, false.

Example

The following markup enables the navigation functionality within the Heatmap Control:

<dxh:HeatmapControl EnableAxisXNavigation="True" 
                    EnableAxisYNavigation="True">
   <!--...-->
</dxh:HeatmapControl>
See Also