gpt4 book ai didi

jquery - HighCharts 饼图图例值对齐

转载 作者:行者123 更新时间:2023-11-30 23:51:08 25 4
gpt4 key购买 nike

我只是想让我的图例将名称值左对齐,百分比值右对齐,我已经连续两天在这件事上工作,并在论坛上提出了几个不同的问题,并得到了 0 个答案,所以任何人如有任何知识,我希望得到您的帮助!非常感谢 http://jsfiddle.net/hAnCr/2/

$("document").ready(
function(){
$('#container').highcharts({
chart:{
type:'pie',
height: 300,
width: 400
},
credits:{enabled: false},
colors:[
'#5485BC', '#AA8C30', '#5C9384', '#981A37', '#FCB319', '#86A033', '#614931', '#00526F', '#594266', '#cb6828', '#aaaaab', '#a89375'
],
title:{text: null},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
showInLegend: true,
dataLabels: {
enabled: false,
formatter: function() {
return this.percentage.toFixed(2) + '%';
}
}
}
},
legend: {
enabled: true,
layout: 'vertical',
align: 'right',
width: 200,
verticalAlign: 'middle',
useHTML: true,
labelFormatter: function() {
return '<div style="text-align: left; width:130px;">' + this.name + '</div><div style="width:40px; text-align:right;">' + this.y + '%</div>';
}
},
series: [{
type: 'pie',
dataLabels: {

},
data: [
['Domestic Equity', 38.5],
['International Equity', 26.85],
['Other', 15.70],
['Cash and Equivalents', 10.48],
['Fixed Income', 8.48]
]
}]
});
});

最佳答案

您应该设置 float:left;对于图例中的两个 div。

http://jsfiddle.net/hAnCr/25/

labelFormatter: function() {
return '<div style="text-align: left; width:130px;float:left;">' + this.name + '</div><div style="width:40px; float:left;text-align:right;">' + this.y + '%</div>';

关于jquery - HighCharts 饼图图例值对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16223616/

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