> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Progress Bars

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/5/app-studio/reference/gallery/progress-bar

[mintlify link]: https://doc.lucidworks.com/docs/5/app-studio/reference/gallery/progress-bar

[old doc.lw link]: https://doc.lucidworks.com/app-studio/4.2/1052

<LwTemplate />

## Default

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/progressbars01.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=8a0b86d85377f940d6577bdafef43ee3" alt="Example" width="1271" height="133" data-path="assets/images/app-studio/as-examples/gallery/progressbars01.png" />

```html wrap  theme={"dark"}
<div styling="progress-bar">
    <div styling="progress-bar-fill" style="width: 66%"></div>
</div>
```

## Background Color

All background colors can be use to change the color of the bar

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/progressbars02.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=98bf089064a85d52dbc293ef410e1a14" alt="Example" width="1271" height="133" data-path="assets/images/app-studio/as-examples/gallery/progressbars02.png" />

```html wrap  theme={"dark"}
<div styling="progress-bar">
    <div styling="progress-bar-fill bg-sunflower" style="width: 33%"></div>
</div>
```

## Radial

<img src="https://mintcdn.com/lucidworks/vACLe5BtgzmMoCXX/assets/images/app-studio/as-examples/gallery/progressbars03.png?fit=max&auto=format&n=vACLe5BtgzmMoCXX&q=85&s=65643c8b44ce2c30efc8f74778c821e7" alt="Example" width="1271" height="328" data-path="assets/images/app-studio/as-examples/gallery/progressbars03.png" />

```xml wrap  theme={"dark"}
<layout:grid>
  <layout:block sm="1-2">
    <progress:radial percentage="33"></progress:radial>
  </layout:block>
  <layout:block sm="1-2">
    <progress:radial percentage="88" fill-class="tk-stl-bg-raspberry" percentage-class="tk-stl-text-raspberry"></progress:radial>
  </layout:block>
</layout:grid>
```
