在所有日期时间显示的日期轴,而不是amcharts4中的小时

时间:2019-10-21 09:06:26

标签: amcharts amcharts4

我厌倦了尝试dateAxis中的所有参数,但显示了标签日期小时部分

var dateAxis = chart.xAxes.push(new am4charts.DateAxis());
dateAxis.renderer.minGridDistance = 20;
dateAxis.renderer.grid.template.location = 0.5;
dateAxis.startLocation = 0.5;
dateAxis.endLocation = 0.5;
dateAxis.dateFormats.setKey("day", "YYYY/MM/dd hh:mm");
dateAxis.tooltipDateFormat = "YYYY/MM/dd HH:mm";
// Setting up label rotation
dateAxis.renderer.labels.template.rotation = 45;

image hown just hour in lable

1 个答案:

答案 0 :(得分:1)

DateAxis处于“小时”模式时,您正在为“日”设置格式。您需要为此进行设置。在进行此操作时,请确保也设置了周期更改:

dateAxis.dateFormats.setKey("hour", "YYYY/MM/dd hh:mm");
dateAxis.periodChangeDateFormats.setKey("hour", "YYYY/MM/dd hh:mm");

确保read this关于DateAxis上的格式。