Plot constructor

Plot({
  1. double height = 200.0,
  2. bool centered = false,
  3. required List<Point<num>> data,
  4. required PlotStyle style,
  5. required Offset gridSize,
  6. required EdgeInsets padding,
  7. String? xTitle,
  8. String? yTitle,
})

Implementation

Plot({
  this.height = 200.0,
  this.centered = false,
  required this.data,
  required this.style,
  required this.gridSize,
  required this.padding,
  this.xTitle,
  this.yTitle,
});