Click or drag to resize

ChartSource(Double, Double, Int32, FuncDouble, Double) Constructor

Contains the information necessary to plot a function, including the range of x values, the resolution, and the function itself.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+892c66cd78254e5a7ad663c063da400b3042cf5b
Syntax
C#
public ChartSource(
	double lowX,
	double highX,
	int resolution,
	Func<double, double> function
)

Parameters

lowX  Double
Low X bound.
highX  Double
High X bound.
resolution  Int32
Number of points to plot.
function  FuncDouble, Double
The function to plot.
See Also