- Source
Example
//Python:
import dash
import dash_lumino_components as dlc
splitPanel = dlc.SplitPanel([
dlc.TabPanel([], id="tab-panel"),
dlc.DockPanel([], id="dock-panel")
], id="split-panel")
Type Definitions
propTypes
PropertiesName | Type | Description |
---|---|---|
id | string | ID of the widget |
alignment | string | the content alignment of the layout ("start" | "center" | "end" | "justify") |
orientation | string | a type alias for a split layout orientation ("horizontal" | "vertical") |
spacing | number | The spacing between items in the layout |
addToDom | boolean | bool if the object has to be added to the dom directly |
children | Array.<DockPanel, TabPanel, BoxPanel, Panel> | The widgets |
- Source