FlDotData constructor

const FlDotData({
  1. bool show = true,
  2. CheckToShowDot checkToShowDot = showAllDots,
  3. GetDotPainterCallback getDotPainter = _defaultGetDotPainter,
})

set show false to prevent dots from drawing, if you want to show or hide dots in some spots, override checkToShowDot to handle it in your way.

Implementation

const FlDotData({
  this.show = true,
  this.checkToShowDot = showAllDots,
  this.getDotPainter = _defaultGetDotPainter,
});