Disable Components
Disable Prop List / Timeline / Toolbar
caution
This is not the same as hiding these components:
Hiding components only makes them collapse on default (see Hide Components)
Not showing components disables them
You can disable any component in the library by setting its show property to false:
No Toolbar
- Global Config Generator
- Config
new GlobalConfigGenerator().showToolbar(false)
config.displayToolbar = false
No Timeline
- Global Config Generator
- Config
new GlobalConfigGenerator().showTimeline(false)
config.displayTimeline = false
No Prop List
- Global Config Generator
- Config
new GlobalConfigGenerator().showPropList(false)
config.displayPropList = false
No Prop List, Toolbar and Timeline
- Global Config Generator
- Config
new GlobalConfigGenerator().showPropList(false).showTimeline(false).showToolbar(false)
config.displayToolbar = false
config.displayTimeline = false
config.displayPropList = false