stack method

DataPointPipeline stack([
  1. bool enabled = true
])

Stack points on point.y by point.x with point.dy values

Implementation

DataPointPipeline stack([bool enabled = true]) {
  if (enabled) _modifiers.add(StackModifier());
  return this;
}