void SetupSlope(Double x1, Double y1, Double x2, Double y2)
Setup slope line equation in one call.
| # | Name | Description |
|---|---|---|
| 1 | x1 | Slope line starting point x position. |
| 2 | y1 | Slope line starting point y position. |
| 3 | x2 | Slope line ending point x position. |
| 4 | y2 | Slope line ending point y position. |
Result: stored in self (calling object)
Remarks:
Slope line is defined by (x1,y1) and (x2,y2) points.
Examples
using Dew.Stats.Tee;
ProbabilityPlot series = new ProbabilityPlot();
series.Chart = Chart1.Chart;
series.SetupSlope(0,100.5,20,120.3);