我想有以下垂直线是在15分钟的距离固定,有没有办法实现这一点?
这是我现在的代码:
scales: {
x: {
type: 'time',
time: {
unit: 'minute',
ticks: {
stepSize: 15
},
displayFormats: {
minute: 'HH:mm',
hour: 'HH:mm',
}
},
min: '{{ tour.chart_min }}',
max: '{{ tour.chart_max }}',
},
y: { beginAtZero: false }
},
1条答案
按热度按时间ztigrdn81#
您的天平配置似乎不一致。您在“time”节点中添加了“ticks”。
试着做以下事情: