CartesianScale constructor
const
CartesianScale({
- required ChartBounds bounds,
- required int count,
- required double minValue,
- 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,
});