1
我在聚焦高餅圖中的文本時出現了一個小問題。以高位餅圖爲中心的文本響應
我此腳本的餅圖
var chart1 = new Highcharts.Chart({
chart: {
renderTo: 'finance-1',
type: 'pie'
},
credits: {
enabled: false
},
title: {
text: '',
},
tooltip: {
enabled: false
},
plotOptions: {
pie: {
borderColor: null,
innerSize: '70%',
dataLabels: {
enabled: false
}
}
},
series: [{
data: [
{ y: 64, color: '#283139' },
{ y: 46, color: '#ebebeb' }
]
}]
},
// using
function (chart1) { // on complete
var xpos = '50%';
var ypos = '50%';
var circleradius = 40;
// Render the circle
chart1.renderer.circle(xpos, ypos, circleradius).attr({
fill: '#fff',
}).add();
// Render the text
chart1.renderer.text('3.900' + ' kr.', 100, 90).css({
width: circleradius * 2,
color: '#222',
fontSize: '18px',
textAlign: 'center',
fontFamily: 'dinotmedium',
}).attr({
// why doesn't zIndex get the text in front of the chart?
zIndex: 999
}).add();
});
var chart2 = new Highcharts.Chart({
chart: {
renderTo: 'finance-2',
type: 'pie',
backgroundColor: '#ebebeb'
},
credits: {
enabled: false
},
title: {
text: '',
},
tooltip: {
enabled: false
},
plotOptions: {
pie: {
borderColor: null,
innerSize: '70%',
dataLabels: {
enabled: false
}
}
},
series: [{
data: [
{ y: 86, color: '#fff' },
{ y: 14, color: '#283139' }
]
}]
},
這個作品幾乎,因爲它應該,但文字居中不響應, - 因爲它是一個靜態的位置,
chart1.renderer.text('3.900' + ' kr.', 100, 90)
的當屏幕尺寸變小時,文字將移出中心。
如何根據屏幕大小將它放置在餅圖的中心?