Shows a new chart in a default form.

Namespace:  CenterSpace.NMath.Charting.Microsoft
Assembly:  NMathChartMicrosoft (in NMathChartMicrosoft.dll) Version: 5.1.0.0

Syntax

C#
public static void Show(
	Bracket bracket,
	int numInterpolatedValues
)
Visual Basic (Declaration)
Public Shared Sub Show ( _
	bracket As Bracket, _
	numInterpolatedValues As Integer _
)
Visual C++
public:
static void Show(
	Bracket^ bracket, 
	int numInterpolatedValues
)

Parameters

bracket
Type: CenterSpace.NMath.Analysis..::.Bracket
The bracket, with contained function.
numInterpolatedValues
Type: System..::.Int32
The number of interpolated values. The bracket Lower, Interior, and Upper values may additionally be inserted into the interpolated series.

Remarks

Equivalent to:
CopyC#
NMathChart.Show( ToChart( bracket, numInterpolatedValues ) );

See Also