如何在azure工作簿中的图表中设置日期格式?

问题描述 投票:0回答:1

我试图通过 Azure 资源管理器数据源的查询,在我的 azure 工作簿中将 azure 成本管理 API 的响应绘制为折线图。我的 x 轴是UsageDate,y 轴是PreTaxCost。 API 给出的UsageDate 的默认格式是YYYYMMDD,但是当我尝试绘制日期时,它显示为YY、YYM、MDD。

如何删除这些逗号或将其格式化为日期时间?

我尝试将单位设置为 None 并取消选中 X 轴图表设置中的显示分组分隔符,但问题仍然存在。

azure-resource-manager azure-rest-api
1个回答
0
投票

如何在 azure 工作簿中的图表中设置日期格式?

要格式化日期,您可以使用 format_datetime() 函数,如下所示:

let rith = datatable(TestDate: string, Cost: real)
[
    "20240901", 68,
    "20240902", 69,
    "20240903", 70
];
rith
| extend Test_Date_Formatted = format_datetime(todatetime(TestDate), "yyyy,MM,dd")
| project Test_Date_Formatted, Cost
| render linechart

输出:

enter image description here

删除逗号:

将查询更改为

| extend Test_Date_Formatted = format_datetime(todatetime(TestDate), "yyyyMMdd")

输出:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.