顯示數據透視表和圖表。 您可以以互動方式選取資料、數據行、數據列和各種圖表類型。
注意
- 此視覺效果只能在轉譯運算符的內容中使用。
- 此視覺效果可用於 Kusto.Explorer,但無法在 Azure 數據總管 Web UI 中使用。
語法
T|renderpivotchart
深入瞭解 語法慣例。
參數
| 姓名 | 類型 | 必要 | 描述 |
|---|---|---|---|
| T | string |
✔️ | 輸入數據表名稱。 |
範例
此查詢提供指定日期範圍內 Contoso 計算機產品銷售的詳細分析,並可視化為樞紐分析圖。
本文中的範例會使用 說明叢集中公開可用的數據表,例如
StormEvents資料庫中的 數據表。
SalesFact
| join kind= inner Products on ProductKey
| where ProductCategoryName has "Computers" and ProductName has "Contoso"
| where DateKey between (datetime(2006-12-31) .. datetime(2007-02-01))
| project SalesAmount, ProductName, DateKey
| render pivotchart
輸出