ピボット グラフ
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
ピボット テーブルとグラフが表示されます。 データ、列、行、およびさまざまなグラフの種類を対話形式で選択できます。
Note
- この視覚化は、 render 演算子のコンテキストでのみ使用できます。
- この視覚化は Kusto.Explorer で使用できますが、Azure Data Explorer Web UI では使用できません。
構文
T |
render
pivotchart
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
T | string |
✔️ | 入力テーブル名。 |
例
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