Skip to content

Progress

Show design guidelines

HTML React Angular
<certara-progress value="50" label="Progress" help-text="50% complete"></certara-progress>
import { CertaraProgress } from '@certara/certara-ui-react';
<CertaraProgress value={50} label="Progress" helpText="50% complete" />
// In your module (e.g., app.module.ts)
import { CertaraUiAngularModule } from '@certara/certara-ui-angular';
@NgModule({
imports: [CertaraUiAngularModule]
})
// In your template:
<certara-progress value="50" label="Progress" help-text="50% complete"></certara-progress>
HTML React Angular
<certara-progress value="60" variant="brand" label="Brand"></certara-progress>
import { CertaraProgress } from '@certara/certara-ui-react';
<CertaraProgress value={60} variant="brand" label="Brand" />
// In your module (e.g., app.module.ts)
import { CertaraUiAngularModule } from '@certara/certara-ui-angular';
@NgModule({
imports: [CertaraUiAngularModule]
})
// In your template:
<certara-progress value="60" variant="brand" label="Brand"></certara-progress>

animated

Attributeanimated
Typeboolean
Defaultfalse
Requiredfalse
DescriptionWhether the progress bar displays a striped animation

helpText

Attributehelp-text
Typestring
Defaultundefined
Requiredfalse
DescriptionThe help text of the progress bar

indeterminate

Attributeindeterminate
Typeboolean
Defaultfalse
Requiredfalse
DescriptionWhether the progress bar is indeterminate, if true, the value prop is ignored

label

Attributelabel
Typestring
Defaultundefined
Requiredfalse
DescriptionThe label of the progress bar

value

Attributevalue
Typenumber
Defaultnull
Requiredfalse
DescriptionThe value of the progress bar (0-100%)

variant

Attributevariant
Type"brand" | "error" | "success"
Default'brand'
Requiredfalse
DescriptionThe color variant of the progress bar

There are no events available for this component

There are no public methods available for this component

There are no slots available for this component