gpt4 book ai didi

Highcharts 在 2 条不同的行上写入 xaxis 值

转载 作者:行者123 更新时间:2023-12-04 02:29:37 25 4
gpt4 key购买 nike

我在 x 轴上使用以下内容:

 xAxis: {
type: 'datetime',
tickInterval: 3600 * 1000, // one hour
tickWidth: 0,
gridLineWidth: 1,
gridLineColor: '<?php echo($gridlinecolor); ?>',
labels: {
align: 'center',
x: -3,
y: 20,
formatter: function() {
return Highcharts.dateFormat('%d-%m', this.value) + ' / ' + Highcharts.dateFormat('%l%p', this.value);
}
}
}

这给了我 13-02/4PM 之类的信息。

我想换一行13-02下午 4 点

我怎样才能做到这一点?

谢谢,

约翰。

最佳答案

您可以使用 html <br/> :

formatter: function() {
return Highcharts.dateFormat('%d-%m', this.value) + '<br/>' + Highcharts.dateFormat('%l%p', this.value);
}

fiddle 示例 here .

参见 here 部分在 Highcharts 中的 HTML 上。

关于Highcharts 在 2 条不同的行上写入 xaxis 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21790889/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com