ProbabilityPlot.SetupSlope Method

void SetupSlope(Double x1, Double y1, Double x2, Double y2)

Setup slope line equation in one call.

#NameDescription
1x1Slope line starting point x position.
2y1Slope line starting point y position.
3x2Slope line ending point x position.
4y2Slope 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);