Canopy Progress Indicator — Best Practices
SkillDev toolsBest practices for the Canopy Progress Indicator component. Trigger when adding progress bars, multi-step form journey progress, step counters, or percentage indicators in an Angular project using Canopy.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Canopy Progress Indicator — Best Practices skill
What this skill tells your AI
The instructions your AI receives, as published by legal-and-general/canopy in skills/best-practice/progress-indicator/SKILL.md and read by ahel’s review.
This skill provides usage guidance and input reference for the Canopy progress indicator components from @legal-and-general/canopy.
Apply this skill whenever you use LgProgressIndicatorComponent, LgProgressBarComponent, or LgProgressHeaderComponent.
Import
import {
LgProgressIndicatorComponent,
LgProgressBarComponent,
LgProgressHeaderComponent,
} from '@legal-and-general/canopy';
Basic Usage
Simple progress bar only:
<lg-progress-bar [max]="totalSteps" [value]="currentStep"></lg-progress-bar>
Full progress indicator for a multi-step journey:
<lg-progress-indicator
[max]="totalSteps"
[value]="currentStep"
displayAs="step"
[showProgressBar]="true"
>
Journey title
<lg-progress-header>Step Heading</lg-progress-header>
</lg-progress-indicator>
LgProgressBarComponent Inputs
| Input | Type | Default | Required | Description |
|---|---|---|---|---|
max | number | 0 | Yes | Total number of steps. |
value | number | 0 | Yes | Current step. |
LgProgressIndicatorComponent Inputs
| Input | Type | Default | Required | Description |
|---|---|---|---|---|
max | number | 0 | Yes | Total number of steps. |
value | number | 0 | Yes | Current step. |
displayAs | 'step' | 'percentage' | 'step' | No | Display mode. |
showProgressBar | boolean | true | No | Whether to render the progress bar. |
stepsPrefix | string | 'Step' | No | Text prefix for step counter display (e.g. "Step 1 of 3"). |
When to Use
Use the progress indicator to show progress through a multi-step form journey. Use it when the total number of steps is known in advance. For indeterminate loading states, use the Spinner component instead.
Signals
- GitHub stars
- 23
- Forks
- 46
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
canopy-progress-indicator- Source
- github.com/legal-and-general/canopy