Search
LayoutBuilder.CreateAndAddRowLayout Method (YAxisRenderer, Plot2D, Plot2D, Plot2D, YAxisRenderer)
See Also
 






Creates a StackPanel containing the specified plots and axis renderers. The panel is automatically added to the dashboard's LayoutPanel.

Namespace: MindFusion.Charting.Controls
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public StackPanel CreateAndAddRowLayout (
    YAxisRenderer left,
    Plot2D plot1,
    Plot2D plot2,
    Plot2D plot3,
    YAxisRenderer right
)

Visual Basic  Copy Code

Public Function CreateAndAddRowLayout( _
    left As YAxisRenderer, _
    plot1 As Plot2D, _
    plot2 As Plot2D, _
    plot3 As Plot2D, _
    right As YAxisRenderer _
) As StackPanel

 Parameters

left

A YAxisRenderer that should be placed at left side of the plots.

plot1

A Plot2D instance.

plot2

A Plot2D instance.

plot3

A Plot2D instance.

right

A YAxisRenderer that should be placed at right side of the plots.

 Return Value

A StackPanel instance.

 See Also