MeasureAxis constructor

const MeasureAxis({
  1. bool showLine = false,
  2. LineStyle lineStyle = const LineStyle(),
  3. LabelStyle labelStyle = const LabelStyle(),
  4. int? gapAxisToLabel = 5,
  5. LabelAnchor labelAnchor = LabelAnchor.centered,
  6. int tickLength = 3,
  7. String tickLabelFormatter(
    1. num? measure
    )?,
  8. NumericTickProvider? numericTickProvider,
  9. NumericViewport? numericViewport,
  10. bool noRenderSpec = false,
  11. bool useGridLine = false,
  12. LineStyle gridLineStyle = const LineStyle(),
  13. LineStyle tickLineStyle = const LineStyle(),
})

Implementation

const MeasureAxis({
  this.showLine = false,
  this.lineStyle = const LineStyle(),
  this.labelStyle = const LabelStyle(),
  this.gapAxisToLabel = 5,
  this.labelAnchor = LabelAnchor.centered,
  this.tickLength = 3,
  this.tickLabelFormatter,
  this.numericTickProvider,
  this.numericViewport,
  super.noRenderSpec,
  super.useGridLine,
  super.gridLineStyle,
  super.tickLineStyle,
});