Skip to main content
All docs
V25.1
  • GanttControl.ZoomOut() Method

    Decreases the time ruler scale.

    Namespace: DevExpress.XtraGantt

    Assembly: DevExpress.XtraGantt.v25.1.dll

    NuGet Package: DevExpress.Win.Gantt

    Declaration

    public void ZoomOut()

    Remarks

    The GanttControl.OptionsMainTimeRuler.Unit property specifies the time interval that corresponds to a single measure unit on the time scale. For example, the time scale can be in hours, days, or months.

    image

    image

    The time scale displays division marks. The GanttControl.OptionsMainTimeRuler.Count property specifies the number of measure units in a single division on the time scale. For example, if the measure unit is an hour, a single division can correspond to one, two, or six hours.

    image

    image

    Users can hold Ctrl and use the mouse wheel to change the measure unit. The GanttControl.ZoomMode property specifies how the scale changes:

    • first decreases the size of a single division to a certain limit and then switches to the next measure unit (week, month, quarter, etc.).
    • switches to the next measure unit by each wheel step

    The GanttControl.OptionsMainTimeRuler.MinUnit and GanttControl.OptionsMainTimeRuler.MaxUnit properties specify the minimum and maximum measure units.

    You can call the GanttControl.ZoomIn and GanttControl.ZoomOut methods to change the measure unit in code.

    See Also