AxisLine constructor

const AxisLine({
  1. bool show = true,
  2. AxisSymbol symbol = AxisSymbol.none,
  3. Size symbolSize = const Size(10, 15),
  4. Offset symbolOffset = Offset.zero,
  5. MainTick? tick,
  6. LineStyle style = const LineStyle(color: Colors.black45, smooth: false),
  7. StyleFun2<DynamicData, DynamicData, LineStyle>? styleFun,
  8. StyleFun2<DynamicData, DynamicData, MainTick>? tickFun,
})

Implementation

const AxisLine({
  this.show = true,
  this.symbol = AxisSymbol.none,
  this.symbolSize = const Size(10, 15),
  this.symbolOffset = Offset.zero,
  this.tick,
  this.style = const LineStyle(color: Colors.black45, smooth: false),
  this.styleFun,
  this.tickFun,
});