你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

数据透视图

适用于:✅Microsoft Fabric✅Azure 数据资源管理器Azure MonitorMicrosoft✅ Sentinel

显示数据透视表和图表。 你可以通过交互方式选择数据、列、行和各种图表类型。

注意

  • 此可视化效果只能在 render 运算符的上下文中使用。
  • 此可视化效果在 Kusto.Explorer 中可用,但在 Azure 数据资源管理器 Web UI 中不可用。

语法

T | render pivotchart

详细了解语法约定

参数

客户 类型​​ 必需 说明
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

查询结果的屏幕截图,显示了透视图表可视化效果。