Shows a new chart in a default form.
Namespace:
CenterSpace.NMath.Charting.MicrosoftAssembly: 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#
To plot matrix rows, call data.Transpose().
NMathChart.Show( ToChart( data, xUnits ) );