normalize method

DataPointPipeline normalize({
  1. double low = 0.0,
  2. double high = 1.0,
  3. double? mid,
  4. double? threshold,
})

Normalize point.dy values

Implementation

DataPointPipeline normalize({
  double low = 0.0,
  double high = 1.0,
  double? mid,
  double? threshold,
}) {
  _modifiers.add(NormalizeModifier(
    low: low,
    high: high,
    mid: mid,
    threshold: threshold,
  ));
  return this;
}