> 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/heatmap-chart.md).

# Heatmap Chart

#### Heatmap Chart – Turn Data Density into Visual Intensity

The **Heatmap Chart** in **Lowcoder** transforms raw numerical data into a vibrant grid of color-coded cells, helping you instantly identify **patterns, anomalies, or concentration zones** in large datasets. It’s a visual way of answering: *"Where is the intensity highest?"*

#### Perfect For:

* **Website analytics:** Track clicks or engagement across a page
* **User behavior grids:** View activity by time and category
* **Correlation matrices:** Compare how variables relate to one another
* **Calendar heatmaps:** Spot daily, weekly, or monthly trends (e.g., GitHub commits)

#### Data Format Example

Each cell requires an X and Y coordinate with a value:

```json
[
  { "x": "Monday", "y": "User A", "value": 5 },
  { "x": "Tuesday", "y": "User A", "value": 12 },
  { "x": "Monday", "y": "User B", "value": 9 }
]
```

You can dynamically bind this from queries or transformers.

#### Configuration Highlights

* **Chart Type:** Drag “Heatmap Chart” from the Components on the Editor View.
* **Axes:** Define horizontal and vertical dimensions (e.g., time, user, region)
* **Color Encoding:** Value intensity is represented using a color gradient
* **Tooltips:** Hover to display exact values in each cell

#### Custom Styling

* Use color palettes to show scale (e.g., blue to red, green to yellow)
* Apply spacing, border styles, or rounded corners to each cell
* Customize label visibility for cleaner or more data-dense displays
* Advanced? Use **ECharts JSON config** to fine-tune the layout and interactions

### Component Playground

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

### Component Auto-Docs

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


---

# 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/heatmap-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.
