AxisDragEnabled: Boolean;
The AxisDragEnabled property determines whether chart axes can be dragged.
Available values:
true. Axes can be dragged (default).
false. Axes cannot be dragged.
Use JSON or the setAxisDragEnabled method to set the property value, and the getAxisDragEnabled method to get the property value.
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: