BarAreaSpotsLine constructor

const BarAreaSpotsLine({
  1. bool show = false,
  2. FlLine flLineStyle = const FlLine(),
  3. CheckToShowSpotLine checkToShowSpotLine = showAllSpotsBelowLine,
  4. bool applyCutOffY = true,
})

If show is true, LineChart draws some lines on above or below the spots, you can customize the appearance of the lines using flLineStyle and you can decide to show or hide the lines on each spot using checkToShowSpotLine.

Implementation

const BarAreaSpotsLine({
  this.show = false,
  this.flLineStyle = const FlLine(),
  this.checkToShowSpotLine = showAllSpotsBelowLine,
  this.applyCutOffY = true,
});