From 00a9ac8d8a2450565e9489e2c84b6ef37790e44e Mon Sep 17 00:00:00 2001 From: Jason Howell <5067358+JasonWHowell@users.noreply.github.com> Date: Fri, 31 Jul 2026 18:48:42 -0700 Subject: [PATCH 1/3] Delete .acrolinx-config.edn (#7570) --- .acrolinx-config.edn | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 .acrolinx-config.edn diff --git a/.acrolinx-config.edn b/.acrolinx-config.edn deleted file mode 100644 index ae8813f16d..0000000000 --- a/.acrolinx-config.edn +++ /dev/null @@ -1,2 +0,0 @@ -{:allowed-branchname-matches ["main" "master" "release-.*"] - :allowed-filename-matches ["data-explorer"]} From ef621088a985ee2accafb74273da7b658f4d4da4 Mon Sep 17 00:00:00 2001 From: Jason Howell <5067358+JasonWHowell@users.noreply.github.com> Date: Fri, 31 Jul 2026 18:50:38 -0700 Subject: [PATCH 2/3] Update pull_request_template.md (#7571) --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index bfc0fee537..a2a578735f 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -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. From b7dc331ad6879b70d807523c97dd4ef1ecf8b7e6 Mon Sep 17 00:00:00 2001 From: hzargari-ms Date: Wed, 5 Aug 2026 14:03:44 +0300 Subject: [PATCH 3/3] Dashboard specific visuals - Stats and Multi stat (#7576) * Dashboard specific visuals - Stats and Multi stat * Apply suggestions from code review Co-authored-by: learn-build-service-prod-02[bot] <274428175+learn-build-service-prod-02[bot]@users.noreply.github.com> --------- Co-authored-by: learn-build-service-prod-02[bot] <274428175+learn-build-service-prod-02[bot]@users.noreply.github.com> --- .../includes/cross-repo/dashboard-visuals.md | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/data-explorer/includes/cross-repo/dashboard-visuals.md b/data-explorer/includes/cross-repo/dashboard-visuals.md index 4778ed2839..8e1ac3d66c 100644 --- a/data-explorer/includes/cross-repo/dashboard-visuals.md +++ b/data-explorer/includes/cross-repo/dashboard-visuals.md @@ -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.