gpt4 book ai didi

javascript - 在 Highcharts 中左右对齐文本

转载 作者:行者123 更新时间:2023-11-28 06:29:48 28 4
gpt4 key购买 nike

我想将条形的VALUE设置为RIGHT,并将SERIES的值设置为bar1, bar2, bar3) 始终位于栏的LEFT 处。正如图片所示。

enter image description here

这是我的代码:link

plotOptions: {
bar: {
dataLabels: {
padding: 0,
allowOverlap: true,
enabled: true,
align: 'left',
color: '#FFFFFF',
inside: true,
crop: false,
overflow: "none",
formatter: function() {
return this.series.name + " " + this.y;
},
style: {
width:100
}
.
.
.

最佳答案

这可以通过将轴标签设置为左对齐并启用数据标签来完成。请参阅 jsFiddle:http://jsfiddle.net/euot9L66/1/

$(function() {
$('#container').highcharts({
chart: {
type: 'bar'
},
xAxis: {
categories: ['Bar 1', 'Bar 2', 'Bar 3'],
labels: {
align: 'left',
x: 5
}
},
plotOptions: {
series: {
dataLabels: {
enabled: true
}
}
},
series: [{
data: [52, 90, 42]
}]
});
});

关于javascript - 在 Highcharts 中左右对齐文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34805420/

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