KinChartAxisStyle constructor

const KinChartAxisStyle({
  1. bool showYAxisLabels = false,
  2. bool showXAxisLabels = true,
  3. String yLabelFormatter(
    1. double value
    )?,
  4. String xLabelFormatter(
    1. String label
    )?,
  5. double yAxisWidth = 40.0,
})

Implementation

const KinChartAxisStyle({
  this.showYAxisLabels = false,
  this.showXAxisLabels = true,
  this.yLabelFormatter,
  this.xLabelFormatter,
  this.yAxisWidth = 40.0,
});