You are here: Symbol Reference > Dew Namespace > Dew.Stats Namespace > Dew.Stats.Tee Namespace > Classes > ProbabilityPlot Class > ProbabilityPlot Methods > ProbabilityPlot.SetupSlope Method
Dew Stats for .NET
ContentsIndexHome
PreviousUpNext
ProbabilityPlot.SetupSlope Method

Setup slope line equation in one call.

Syntax
C#
Visual Basic
public void SetupSlope(double x1, double y1, double x2, double y2);
Parameters 
Description 
double x1 
Slope line starting point x position. 
double y1 
Slope line starting point y position. 
double x2 
Slope line ending point x position. 
double y2 
Slope line ending point y position. 

Slope line is defined by (x1,y1) and (x2,y2) points.

using Dew.Stats.Tee; ProbabilityPlot series = new ProbabilityPlot(); series.Chart = Chart1.Chart; series.SetupSlope(0,100.5,20,120.3);
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!