Skip to main content

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

new GlobalConfigGenerator().showToolbar(false)

No Timeline

new GlobalConfigGenerator().showTimeline(false)

No Prop List

new GlobalConfigGenerator().showPropList(false)

No Prop List, Toolbar and Timeline

new GlobalConfigGenerator().showPropList(false).showTimeline(false).showToolbar(false)