ChartVisibilityOptions constructor

const ChartVisibilityOptions({
  1. bool showGrid = true,
  2. bool showLegend = true,
  3. bool showValues = false,
  4. bool showLabels = true,
  5. bool showAxisLabels = true,
})

Implementation

const ChartVisibilityOptions({
  this.showGrid = true,
  this.showLegend = true,
  this.showValues = false,
  this.showLabels = true,
  this.showAxisLabels = true,
});