HighchartsSeriesDragDropOptions constructor
HighchartsSeriesDragDropOptions({
- HighchartsSeriesDragDropDragHandleOptions? dragHandle,
- dynamic dragMaxX,
- double? dragMaxY,
- dynamic dragMinX,
- double? dragMinY,
- double? dragPrecisionX,
- double? dragPrecisionY,
- double? dragSensitivity,
- bool? draggableX,
- bool? draggableY,
- String? groupBy,
- HighchartsSeriesDragDropGuideBoxOptions? guideBox,
- bool? liveRedraw,
The draggable-points module allows points to be moved around or modified in the chart. In addition to the options mentioned under the dragDrop
API structure, the module fires three events, point.dragStart, point.drag and point.drop.
API Docs: https://api.highcharts.com/highcharts/series.timeline.dragDrop
Implementation
HighchartsSeriesDragDropOptions(
{this.dragHandle,
this.dragMaxX,
this.dragMaxY,
this.dragMinX,
this.dragMinY,
this.dragPrecisionX,
this.dragPrecisionY,
this.dragSensitivity,
this.draggableX,
this.draggableY,
this.groupBy,
this.guideBox,
this.liveRedraw});