Skip to main content
All docs
V25.1
  • 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.v25.1.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