HighchartsArcDiagramSeriesNodesOptions constructor

HighchartsArcDiagramSeriesNodesOptions({
  1. String? color,
  2. double? colorIndex,
  3. HighchartsArcDiagramSeriesNodesDataLabelsOptions? dataLabels,
  4. double? height,
  5. String? id,
  6. String? name,
  7. dynamic offset,
  8. dynamic offsetHorizontal,
  9. dynamic offsetVertical,
})

A collection of options for the individual nodes. The nodes in an arc diagram are auto-generated instances of Highcharts.Point, but options can be applied here and linked by the id.

API Docs: https://api.highcharts.com/highcharts/series.arcdiagram.nodes

Implementation

HighchartsArcDiagramSeriesNodesOptions(
    {this.color,
    this.colorIndex,
    this.dataLabels,
    this.height,
    this.id,
    this.name,
    this.offset,
    this.offsetHorizontal,
    this.offsetVertical});