ParallelCoordinates.AxisDragEnabled

Syntax

AxisDragEnabled: Boolean;

Description

The AxisDragEnabled property determines whether chart axes can be dragged.

Comments

Available values:

Use JSON or the setAxisDragEnabled method to set the property value, and the getAxisDragEnabled method to get the property value.

Example

Executing the example requires the ParallelCoordinates component named coord (see Example of Creating the ParallelCoordinates Component). Enable dragging for chart axes and drag the third axis:

// Enable axis dragging
coord.setAxisDragEnabled(true);

Drag the third axis to another position. After this axes positions are changed:

See also:

ParallelCoordinates