gpt4 book ai didi

tooltip - highcharts 工具提示文本对齐

转载 作者:行者123 更新时间:2023-12-02 07:41:05 24 4
gpt4 key购买 nike

我使用 Highcharts 创建了一个图表。
工具提示在 FF 和 IE 中工作正常,但在 chorme 中,文本超出了框架。

我尝试使用 HTML

tooltip:
{
//Tried this also
/* formatter: function()
{
return '' + Highcharts.dateFormat('%H:%M:%S', this.x) +'; '+ this.y;
}, */
useHTML: true,
formatter: function() {
var html="<div style='width:140px;text-align:center; direction:ltr'>"+
Highcharts.dateFormat('%H:%M:%S', this.x) +'; '+ this.y+
"</div>";
return html;
}

},

最佳答案

来自 Highcharts.com 的回答:

tooltip: {
shared: true,
useHTML: true,
headerFormat: '<small>{point.key}</small><table>',
pointFormat: '<tr><td style="color: {series.color}">{series.name}: </td>' +
'<td style="text-align: right"><b>{point.y} EUR</b></td></tr>',
footerFormat: '</table>',
valueDecimals: 2
},

Fiddle Here

关于tooltip - highcharts 工具提示文本对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11133469/

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