Hide Components
Hide Prop List / Toolbar by Default
caution
This is not the same as disabling 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:
Hide Toolbar by Default
- Global Config Generator
- Config
new GlobalConfigGenerator().defaultOpenToolbar(false)
config.defaultOpenToolbar = false
Hide Prop List by Default
- Global Config Generator
- Config
new GlobalConfigGenerator().defaultOpenPropList(false)
config.defaultOpenPropList = false
Hide Prop List and Toolbar by Default
- Global Config Generator
- Config
new GlobalConfigGenerator().defaultOpenPropList(false).defaultOpenToolbar(false)
config.defaultOpenPropList = false
config.defaultOpenToolbar = false