sets the format of the time scale (X-Axis)
The property is deprecated.
gantt.config.scale_unit = "month";
gantt.config.step = 1;
gantt.config.date_scale = "%F, %Y";
gantt.init("gantt_here");
The date_scale property is deprecated. Use the format 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 }
];
deprecated since v6.2
Back to top