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"]} 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. 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.