Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .acrolinx-config.edn

This file was deleted.

2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Please add a brief comment outlining the purpose of this PR. Add links to any re

## Make sure you've done the following:

1. **Acrolinx**: Make sure your Acrolinx score is **at least 80** (higher is better) and with **0** spelling issues.
1. **Learn Authoring Assistant**: Check the review done by the system to check editorial and style guide suggestions. Approve or #reject all suggestions before sign-off.
1. **Successful build**: Review the build status to make sure **all files are green** (Succeeded) and there are no errors, warnings, or suggestions.
1. **Preview the pages**: Click each **Preview URL** link, scan the entire page looking for formatting issues, in particular the parts you edited.
1. **Check the Table of Contents**: If you're adding a new markdown file, make sure it is linked from the table of contents.
Expand Down
37 changes: 36 additions & 1 deletion data-explorer/includes/cross-repo/dashboard-visuals.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,42 @@
---
ms.topic: include
ms.date: 02/21/2024
ms.date: 08/05/2026
---
## Stat

You can use Stat in Azure Data Explorer dashboards and Fabric Real-Time Dashboards. It shows a single scalar value. Select it from the dashboard visual picker.

> [!NOTE]
> Until `render stat` is implemented, you can't select the Stat visual through the KQL `render` operator. For compatible clients, `render card` provides the closest query-level equivalent.

### Example query

```kusto
StormEvents
| summarize TotalEvents = count()
```

Select **Stat** as the visual type.

## Multi Stat

Multi Stat displays several values in a grid of slots. Select the visual through the dashboard visual picker.

The query should return a label column and a value column. You can explicitly select the **Label column** and **Value column** in the visual settings.

### Example query

```kusto
datatable(Status:string, Count:long)
[
"Active", 42,
"Mitigated", 18,
"Resolved", 73
]
```

In the visual settings, select the first output column as the **Label column**, and the second output column as the **Value column**.

## Funnel chart

A funnel chart visualizes a linear process that has sequential, connected stages. Each funnel stage represents a percentage of the total. So, in most cases, a funnel chart is shaped like a funnel, with the first stage being the largest, and each subsequent stage smaller than its predecessor.
Expand Down