Compose the chart areas and data series from the given charts into a new composite chart.

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

Syntax

C#
public static Chart Compose(
	IEnumerable<Chart> charts,
	int rows,
	int cols,
	NMathChart..::.AreaLayoutOrder order
)
Visual Basic (Declaration)
Public Shared Function Compose ( _
	charts As IEnumerable(Of Chart), _
	rows As Integer, _
	cols As Integer, _
	order As NMathChart..::.AreaLayoutOrder _
) As Chart
Visual C++
public:
static Chart^ Compose(
	IEnumerable<Chart^>^ charts, 
	int rows, 
	int cols, 
	NMathChart..::.AreaLayoutOrder order
)

Parameters

charts
Type: System.Collections.Generic..::.IEnumerable<(Of <(Chart>)>)
Component charts.
rows
Type: System..::.Int32
The number of rows.
cols
Type: System..::.Int32
The number of columns.
order
Type: CenterSpace.NMath.Charting.Microsoft..::.NMathChart..::.AreaLayoutOrder
The layout order.

Return Value

A new composite chart.

Remarks

Component chart titles and legends are ignored.

See Also