Search
GridLayout.MultipleGraphsPlacement Property
See Also
 



Gets or sets a value indicating how multiple independent graphs in the diagram should be positioned relatively to each other.

 Syntax

VB6  Copy Code

Public Property Get MultipleGraphsPlacement() As EMultipleGraphsPlacement
Public Property Let MultipleGraphsPlacement( _
    ByVal Value As EMultipleGraphsPlacement _
)

C++  Copy Code

public:
EMultipleGraphsPlacement get_MultipleGraphsPlacement ()
void put_MultipleGraphsPlacement (
    EMultipleGraphsPlacement value
)

 Property Value

A member of the EMultipleGraphsPlacement enumeration. The default is mgpHorizontal.

 Remarks

If the diagram contains several unconnected subgraphs, each of them is processed by the algorithm independently from the others. This property specifies how such subgraphs should be placed one relatively to another. The possible options are to arrange them in a row, in a column, or in such a way that the diagram covers a minimal area.

 See Also