ProgressIndicatorConfig

Config when displaying a Progress Indicator

TypeScript
export interface

Properties

PropertyTypeDescription
delaynumberLength of Delay
frameworkComponentAdaptableFrameworkComponentA React, Angular or Vue Framework component to use
renderCustomRenderFunctionRender function
renderMode'content' | 'dialog'Determines whether custom component is rendered as "content" (inside window) or "dialog" (replacing window)
textstringText 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

AdaptableFrameworkComponent

render

Render function

TypeScript
render?: CustomRenderFunction;
Property Value

CustomRenderFunction

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