Shows a new chart in a default form.

Namespace:  CenterSpace.NMath.Charting.Microsoft
Assembly:  NMathStatsChartMicrosoft (in NMathStatsChartMicrosoft.dll) Version: 3.4.0.0

Syntax

C#
public static void Show(
	IDFColumn y,
	NMathChart..::.Unit xUnits
)
Visual Basic (Declaration)
Public Shared Sub Show ( _
	y As IDFColumn, _
	xUnits As NMathChart..::.Unit _
)
Visual C++
public:
static void Show(
	IDFColumn^ y, 
	NMathChart..::.Unit^ xUnits
)

Parameters

y
Type: CenterSpace.NMath.Stats..::.IDFColumn
The y values.
xUnits
Type: CenterSpace.NMath.Charting.Microsoft..::.NMathChart..::.Unit
The units for the x-axis.

Remarks

Equivalent to:
CopyC#
NMathStatsChart.Show( ToChart( y, xUnits ) );

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the given column is not numeric.

See Also