PlexChartGant constructor

const PlexChartGant({
  1. Key? key,
  2. required List<GantTask> tasks,
  3. required DateTime chartStart,
  4. required DateTime chartEnd,
  5. double pixelsPerHour = 60,
  6. double rowHeight = 48,
  7. double barHeight = 32,
  8. TextStyle? timeLabelStyle,
  9. TextStyle? taskLabelStyle,
})

Implementation

const PlexChartGant({
  Key? key,
  required this.tasks,
  required this.chartStart,
  required this.chartEnd,
  this.pixelsPerHour = 60,
  this.rowHeight = 48,
  this.barHeight = 32,
  this.timeLabelStyle,
  this.taskLabelStyle,
}) : super(key: key);