HighchartsTreemapSeriesClusterOptions constructor

HighchartsTreemapSeriesClusterOptions({
  1. String? className,
  2. String? color,
  3. bool? enabled,
  4. double? minimumClusterSize,
  5. String? name,
  6. double? pixelHeight,
  7. double? pixelWidth,
  8. double? reductionFactor,
})

An option to optimize treemap series rendering by grouping smaller leaf nodes below a certain square area threshold in pixels. If the square area of a point becomes smaller than the specified threshold, determined by the pixelWidth and/or pixelHeight options, then this point is moved into one group point per series.

API Docs: https://api.highcharts.com/highcharts/series.treemap.cluster

Implementation

HighchartsTreemapSeriesClusterOptions(
    {this.className,
    this.color,
    this.enabled,
    this.minimumClusterSize,
    this.name,
    this.pixelHeight,
    this.pixelWidth,
    this.reductionFactor});