Skip to main content

date_scale

warning

The property is deprecated.

Description

Sets the format of the time scale (X-Axis)

Example

gantt.config.scale_unit = "month";
gantt.config.step = 1;
gantt.config.date_scale = "%F, %Y";

gantt.init("gantt_here");

Default value: "%d %M"

Details

note

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 }
];

Change log

  • deprecated since v6.2