HeatMapSeries constructor

HeatMapSeries(
  1. List<HeatMapData> data, {
  2. required StyleFun<HeatMapData, AreaStyle> styleFun,
  3. SNumber leftMargin = SNumber.zero,
  4. SNumber topMargin = SNumber.zero,
  5. SNumber rightMargin = SNumber.zero,
  6. SNumber bottomMargin = SNumber.zero,
  7. SNumber? width,
  8. SNumber? height,
  9. AnimatorProps? animation,
  10. CoordSystem? coordSystem = CoordSystem.grid,
  11. int xAxisIndex = 0,
  12. int yAxisIndex = 0,
  13. int calendarIndex = 0,
  14. bool clip = true,
  15. ToolTip? tooltip,
  16. bool touch = true,
  17. int z = 0,
})

Implementation

HeatMapSeries(
  this.data, {
  required this.styleFun,
  super.leftMargin,
  super.topMargin,
  super.rightMargin,
  super.bottomMargin,
  super.width,
  super.height,
  super.animation,
  super.coordSystem = CoordSystem.grid,
  super.xAxisIndex = 0,
  super.yAxisIndex = 0,
  super.calendarIndex = 0,
  super.clip,
  super.tooltip,
  super.touch,
  super.z,
}) : super(polarAxisIndex: -1, parallelIndex: -1, radarIndex: -1);