PlChartAxis constructor

const PlChartAxis({
  1. bool hidden = false,
  2. String? label,
  3. double? min,
  4. double? max,
  5. int tickCount = 5,
  6. bool grid = true,
  7. double? thickness,
  8. String format(
    1. double value
    )?,
})

Creates an axis.

Implementation

const PlChartAxis({
  this.hidden = false,
  this.label,
  this.min,
  this.max,
  this.tickCount = 5,
  this.grid = true,
  this.thickness,
  this.format,
});