Verion: d190d7748a73
when plot shows up, it has 30% padding,
but once use wheel to zoom in, and out, plot's Y stopped at MaxY.
Double click wheel reset plot, 30% padding shows up.
```
// set x max, min
this.XAxis.AbsoluteMaximum = dataPoints.Last().X;
this.XAxis.AbsoluteMinimum = dataPoints.First().X;
// set y max, min
this.YAxis.AbsoluteMaximum = MaxY;
this.YAxis.AbsoluteMinimum = 0;
// set y pading
this.YAxis.MaximumPadding = 0.3;
this.YAxis.MinimumPadding = 0;
```
when plot shows up, it has 30% padding,
but once use wheel to zoom in, and out, plot's Y stopped at MaxY.
Double click wheel reset plot, 30% padding shows up.
```
// set x max, min
this.XAxis.AbsoluteMaximum = dataPoints.Last().X;
this.XAxis.AbsoluteMinimum = dataPoints.First().X;
// set y max, min
this.YAxis.AbsoluteMaximum = MaxY;
this.YAxis.AbsoluteMinimum = 0;
// set y pading
this.YAxis.MaximumPadding = 0.3;
this.YAxis.MinimumPadding = 0;
```