gpt4 book ai didi

javascript - 需要更改标题颜色 donut Highcharts

转载 作者:行者123 更新时间:2023-11-29 18:47:58 25 4
gpt4 key购买 nike

这是我的函数,它在我的 html 中呈现 donut Highcharts 。我能够将动态颜色添加到图例标记/图标中。但现在我还需要将动态颜色添加到图例标题中。我可以弄清楚这一点。

我该怎么做?请帮忙!!!

    const chart = new Highcharts.Chart(
{
chart: {
color: '#000',
backgroundColor: '#336196',
renderTo: 'container',
type: 'pie'
},
title: {
text: "What's using data",
style: {
color: '#000'
}
},
yAxis: {
title: {
text: 'Total percent market share'
}
},
plotOptions: {
pie: {
shadow: false,
borderColor: null
}
},
tooltip: {
formatter: function() {
return '<b>' + this.point.name + '</b>: ' + this.y + ' %'
}
},
legend: {
align: 'right',
layout: 'vertical',
verticalAlign: 'middle',
symbolRadius: 0,
symbolPadding: 10,
itemMarginTop: 15,
itemStyle: {
color: '#fff'
}
},
series: [
{
name: 'Browsers',
data: data,
size: '120%',
innerSize: '60%',
showInLegend: true,
dataLabels: {
enabled: false
},
marker: {
symbol: 'square',
radius: 12
}
}
]
},
function(chart) {
var textX = chart.plotLeft + chart.plotWidth * 0.5
var textY = chart.plotTop + chart.plotHeight * 0.52

var span =
'<div id="pieChartInfoText" style="position:absolute; text-align:center;">'
span +=
'<div style="color:#fff;font-size: 20px;width:50pxmargin-top:36px;margin-left:18px;"></div><br>'
span += '</div>'

$('#addText').append(span)
span = $('#pieChartInfoText')
span.css('left', textX + span.width() * -0.5)
span.css('top', textY + span.height() * -0.5)
}
)

任何帮助将不胜感激。谢谢!!!

最佳答案

要更改图例颜色标题,只需设置:

    legend: {
title: {
text: 'legend title',
style: {
color: 'red'
}
}
}

但是,如果您想更改单个图例项文本,则需要使用:

function(chart) {
var legendItems = $(".highcharts-legend-item");
$(legendItems[0].children[0]).css('fill', 'red');
}

现场演示:http://jsfiddle.net/BlackLabel/avhtLm3w/

关于javascript - 需要更改标题颜色 donut Highcharts ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52519188/

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