SimpleParallelAxis constructor

const SimpleParallelAxis({
  1. required String label,
  2. double? min,
  3. double? max,
  4. bool inverted = false,
  5. Color? color,
})

Implementation

const SimpleParallelAxis({
  required this.label,
  this.min,
  this.max,
  this.inverted = false,
  this.color,
});