NiceHeatMap constructor
const
NiceHeatMap({ - Key? key,
- required List<NiceHeatMapCell> data,
- int rows = 7,
- int cols = 12,
- List<String>? rowLabels,
- List<String>? colLabels,
- double? width,
- double height = 200,
- String? title,
- Color? lowColor,
- Color? highColor,
- double cellRadius = 4,
- double cellSpacing = 2,
- void onCellTap(
- int row,
- int col,
- double value
)?,
})
Implementation
const NiceHeatMap({
super.key,
required this.data,
this.rows = 7,
this.cols = 12,
this.rowLabels,
this.colLabels,
this.width,
this.height = 200,
this.title,
this.lowColor,
this.highColor,
this.cellRadius = 4,
this.cellSpacing = 2,
this.onCellTap,
});