Documentation
Configuration
Customize qlik-script-editor to fit your development workflow and preferences.
Basic Configuration
Essential properties to get started with customizing the editor
height
string | numberSet the height of the editor. Can be a CSS string or pixel value.
<QlikEditor height="400px" /> <QlikEditor height={600} /> <QlikEditor height="50vh" />
width
string | numberSet the width of the editor. Defaults to 100%.
<QlikEditor width="100%" /> <QlikEditor width={800} /> <QlikEditor width="80vw" />
placeholder
stringText to display when the editor is empty.
<QlikEditor placeholder="Enter your Qlik script here..." />
readOnly
booleanMake the editor read-only. Useful for displaying code samples.
<QlikEditor readOnly={true} value="LOAD * FROM DataSource;" />