ProgressIndicatorConfig
Config when displaying a Progress Indicator
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| delay | Length of Delay |
| frameworkComponent | A React, Angular or Vue Framework component to use |
| render | Render function |
| renderMode | Determines whether custom component is rendered as "content" (inside window) or "dialog" (replacing window) |
| text | Text to display |
Property Details
delay
Length of Delay
TypeScript
delay?: number;Property Value
number
frameworkComponent
A React, Angular or Vue Framework component to use
TypeScript
frameworkComponent?: AdaptableFrameworkComponent;Property Value
render
Render function
TypeScript
render?: CustomRenderFunction;Property Value
renderMode
Determines whether custom component is rendered as "content" (inside window) or "dialog" (replacing window)
TypeScript
renderMode?: 'content' | 'dialog';Property Value
'content' | 'dialog'
text
Text to display
TypeScript
text?: string;Property Value
string