CartesianScale constructor

const CartesianScale({
  1. required ChartBounds bounds,
  2. required int count,
  3. required double minValue,
  4. required double maxValue,
})

Creates a scale over bounds with count columns spanning minValue to maxValue on the value axis.

Implementation

const CartesianScale({
  required this.bounds,
  required this.count,
  required this.minValue,
  required this.maxValue,
});