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 thickLength = 3,
  7. MeasureFormat? labelFormat,
  8. int? desiredMaxTickCount,
  9. int? desiredMinTickCount,
  10. int? desiredTickCount,
  11. NumericViewport? numericViewport,
  12. bool noRenderSpec = false,
})

Implementation

const MeasureAxis({
  this.showLine = false,
  this.lineStyle = const LineStyle(),
  this.labelStyle = const LabelStyle(),
  this.gapAxisToLabel = 5,
  this.labelAnchor = LabelAnchor.centered,
  this.thickLength = 3,
  this.labelFormat,
  this.desiredMaxTickCount,
  this.desiredMinTickCount,
  this.desiredTickCount,
  this.numericViewport,
  super.noRenderSpec,
});