矩形式樹狀結構圖
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
矩形式樹狀結構圖會將階層式資料顯示成一組巢狀矩形。 階層的每個層級都是以含有較小矩形 (分葉) 的彩色矩形 (分支) 表示。
注意
- 此視覺效果只能在轉譯運算符的內容中使用。
- 此視覺效果可用於 Kusto.Explorer,但無法在 Azure 數據總管 Web UI 中使用。
語法
T treemap
render
|
[with
(
propertyName =
propertyValue [,
...]])
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
T | string |
✔️ | 輸入數據表名稱。 |
propertyName、 propertyValue | string |
索引鍵/值屬性組的逗號分隔清單。 請參閱 支持的屬性。 |
支援的屬性
所有屬性都是選擇性的。
PropertyName | PropertyValue |
---|---|
series |
以逗號分隔的數據行清單,其合併每個記錄值會定義記錄所屬的數位。 |
範例
StormEvents
| summarize StormEvents=count() by EventType, State
| sort by StormEvents
| limit 30
| render treemap with(title="Storm Events by EventType and State")