AxisPainter constructor

AxisPainter({
  1. required AxisOrientation orientation,
  2. required List<AxisTick> ticks,
  3. required TickConfig tickConfig,
  4. required AxisLineConfig lineConfig,
  5. required TextStyle labelStyle,
  6. required double length,
  7. double labelRotation = 0,
})

Creates an axis painter.

Implementation

AxisPainter({
  required this.orientation,
  required this.ticks,
  required this.tickConfig,
  required this.lineConfig,
  required this.labelStyle,
  required this.length,
  this.labelRotation = 0,
});