所以我想在 xAxis 中格式化日期时间
$scope.today = new Date(new Date(data.getFullYear(), data.getMonth(), data.getDate(), 23, 0, 0).getTime() / 1000);
Highcharts.chart('g233', {
chart: {
type: 'column',
zoomType: 'x'
},
xAxis: {
categories: [$scope.today], //what should i do here?
},
yAxis: {
min: 0,
title: {
text: 'Number of people'
}
}]
});
HTML 代码,因为我使用 ng-init 来显示图形然后不知道如何获取
{{today |date:'MM/DD}}
工作。这里的大部分搜索都会导致这种格式。
<div class="box-body">
<div id="g233" ng-if="finish_get_hours" ng-init="view_g233()"></div>
</div>