> For the complete documentation index, see [llms.txt](https://docs.lowcoder.cloud/lowcoder-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lowcoder.cloud/lowcoder-documentation/build-applications/app-editor/visual-components/dashboard-and-reporting/charts-and-graphs/funnel-chart.md).

# Funnel Chart

The **Funnel Chart** component in **Lowcoder** is purpose-built to illustrate **step-by-step drop-off** in a process — like how users move through a sales or signup funnel. Its tapered shape clearly conveys **decreasing values**, helping identify bottlenecks and optimize flow efficiency.

#### Use Case Highlights

* **Sales Funnel:** Leads → Qualified → Proposal → Closed
* **Marketing Pipeline:** Visitors → Signups → Activations
* **Process Efficiency:** Applications received → Reviewed → Approved

#### Data Format Example

Each step in the funnel requires a **label** and a **numerical value**:

```json
[
  { "stage": "Visited Site", "value": 1000 },
  { "stage": "Signed Up", "value": 400 },
  { "stage": "Subscribed", "value": 180 }
]
```

#### Key Features

* **Automatic Sorting:** Values are typically displayed in descending order (largest at the top)
* **Visual Ratio:** Width of each segment is proportional to its value
* **Color Coding:** Customize segment colors to visually separate steps

***

#### Customisation & Tips

* Apply **tooltips** to show percentages or absolute values on hover
* Combine with **Bar/Line charts** for a broader picture of performance
* Use **ECharts JSON config** to enable label alignment, orientation, and segment gaps

### Component Playground

{% embed url="<https://app.lowcoder.cloud/playground/funnelChart/1>" %}

### Component Auto-Docs

{% embed url="<https://app.lowcoder.cloud/components/funnelChart>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.lowcoder.cloud/lowcoder-documentation/build-applications/app-editor/visual-components/dashboard-and-reporting/charts-and-graphs/funnel-chart.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
