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(
	DoubleMatrix data,
	NMathChart..::.Unit xUnits
)
Visual Basic (Declaration)
Public Shared Sub Show ( _
	data As DoubleMatrix, _
	xUnits As NMathChart..::.Unit _
)
Visual C++
public:
static void Show(
	DoubleMatrix^ data, 
	NMathChart..::.Unit^ xUnits
)

Parameters

data
Type: CenterSpace.NMath.Core..::.DoubleMatrix
The data.
xUnits
Type: CenterSpace.NMath.Charting.Microsoft..::.NMathChart..::.Unit
The units for the x-axis.

Remarks

Equivalent to:
CopyC#
NMathChart.Show( ToChart( data, xUnits ) );
To plot matrix rows, call data.Transpose().

See Also