step

sets the step of the time scale (X-Axis)

number step;

Deprecated

The property is deprecated.

Example

gantt.config.scale_unit = "year";
gantt.config.step = 1;
gantt.config.date_scale = "%Y";
 
gantt.init("gantt_here");


Default value:

1

Related samples

Details

The step property is deprecated. Use the step property of the scales instead:

gantt.config.scales = [
    {unit: "month", step: 1, format: "%F, %Y"},
    {unit: "week", step: 1, format: weekScaleTemplate},
    {unit: "day", step: 1, format: "%D", css:daysStyle }
];
See also
Change log

deprecated since v6.2

Back to top