We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.charts.model.
Class PaneList
java.lang.Object
com.vaadin.flow.component.charts.model.AbstractConfigurationObject
com.vaadin.flow.component.charts.model.PaneList
All Implemented Interfaces:
Pane Container to allow multiple Panes
See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a new pane to the list
int
getPane
(int index) getPanes()
Returns the pane list.
void
removePane
(Pane pane) Removes a pane from the list
-
Constructor Details
-
PaneList
public PaneList()
-
-
Method Details
-
getNumberOfPanes
public int getNumberOfPanes()Returns:
The number of panes in the list
-
getPane
Parameters:
index
- Index of the paneReturns:
The pane with the given index
-
getPanes
Returns the pane list. Use this only for serialization.
Returns:
The pane list.
-
addPane
Adds a new pane to the list
Parameters:
pane
- The pane to add -
removePane
Removes a pane from the list
Parameters:
pane
- The pane to remove
-