UHeatmapChart constructor

const UHeatmapChart({
  1. required List<List<double>> matrix,
  2. Key? key,
  3. List<String>? rowLabels,
  4. List<String>? colLabels,
  5. String? title,
  6. Color? color,
  7. UChartStyle style = const UChartStyle(),
  8. double height = 280,
})

Implementation

const UHeatmapChart({
  required this.matrix,
  super.key,
  this.rowLabels,
  this.colLabels,
  this.title,
  this.color,
  this.style = const UChartStyle(),
  this.height = 280,
});