Vue Gantt - scaleTypeRange

Configures zoom range settings.

Selector: DxScaleTypeRange
Type:

Object

Use the scaleTypeRange.min and scaleTypeRange.max properties to limit zoom in the Gantt chart.

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • scaleTypeRange: {
  • min: 'days',
  • max: 'years'
  • },
  • // ...
  • });
  • });
See Also

max

Specifies the maximum zoom level of tasks in the Gantt chart.

Default Value: 'years'

min

Specifies the minimum zoom level of tasks in the Gantt chart.

Default Value: 'minutes'