DomainAxis<T> constructor

const DomainAxis<T>({
  1. double tickLength = 5,
  2. TickStyle tickStyle = const TickStyle(),
  3. LineStyle? gridLineStyle,
  4. TextStyle labelStyle = const TextStyle(),
  5. String labelFormatter(
    1. T label
    )?,
  6. Widget? labelWidget(
    1. T label
    )?,
  7. double xAxisLabelSpace = 20,
  8. Offset labelOffset = Offset.zero,
  9. double gapTickLabel = 5,
  10. DeluxViewport<T>? viewport,
})

Implementation

const DomainAxis({
  super.tickLength = 5,
  super.tickStyle = const TickStyle(),
  super.gridLineStyle,
  super.labelStyle = const TextStyle(),
  super.labelFormatter,
  super.labelWidget,
  super.xAxisLabelSpace,
  super.labelOffset = Offset.zero,
  super.gapTickLabel = 5,
  super.viewport,
});