KinHeatmap constructor
const
KinHeatmap({
- Key? key,
- required List<
List< data,KinHeatmapCell> > - List<
String> ? columnLabels, - List<
String> ? rowLabels, - double cellSize = 14,
- double cellGap = 3,
- double cellRadius = 3,
- KinHeatmapColorScale? colorScale,
- void onCellTap(
- int row,
- int col,
- KinHeatmapCell cell
Implementation
const KinHeatmap({
super.key,
required this.data,
this.columnLabels,
this.rowLabels,
this.cellSize = 14,
this.cellGap = 3,
this.cellRadius = 3,
this.colorScale,
this.onCellTap,
});