gpt4 book ai didi

javascript - 如何更改 Highcharts 中的文本颜色

转载 作者:可可西里 更新时间:2023-11-01 02:13:20 25 4
gpt4 key购买 nike

这应该很简单,但我仔细阅读了 highcharts 文档,似乎找不到专门针对文本颜色的选项(相比之下,背景、边框、线条等有特定的颜色选项.).然后我遇到了 chart.style选项。它似乎应该有效——但没有。

在此jsfiddle demo您会看到我能够更改字体系列,但不能更改颜色。

我错过了什么?

最佳答案

检查 this example ,我能够更改您的 jsfiddle 上的标签颜色。这是整个选项参数:

Highcharts.setOptions({
chart: {
style: {
fontFamily: 'monospace',
color: "#f00"
}

},
title: {
style: {
color: '#F00',
font: 'bold 16px "Trebuchet MS", Verdana, sans-serif'
}
},
xAxis: {
gridLineWidth: 1,
lineColor: '#000',
tickColor: '#000',
labels: {
style: {
color: '#F00',
font: '11px Trebuchet MS, Verdana, sans-serif'
}
},
title: {
style: {
color: '#333',
fontWeight: 'bold',
fontSize: '12px',
fontFamily: 'Trebuchet MS, Verdana, sans-serif'

}
}
},
yAxis: {
minorTickInterval: 'auto',
lineColor: '#000',
lineWidth: 1,
tickWidth: 1,
tickColor: '#000',
labels: {
style: {
color: '#F00',
font: '11px Trebuchet MS, Verdana, sans-serif'
}
},
title: {
style: {
color: '#333',
fontWeight: 'bold',
fontSize: '12px',
fontFamily: 'Trebuchet MS, Verdana, sans-serif'
}
}
},
});

关于javascript - 如何更改 Highcharts 中的文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8607365/

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