我遇到了高图日志气泡图的连线问题。在此图表中,我在x轴上设置了动态最小值,但在渲染图形时,它在x轴上转移了一些气泡。请查看this fiddle。< / p>
$(function() {
$('#container').highcharts({
chart: {
type: 'bubble',
plotBorderWidth: 1
},
title: {
text: 'Highcharts Bubbles'
},
subtitle: {
text: 'The <em>zMin</em> and <em>zMax</em> options are set to 0 and 100, bubbles should not become near the <em>maxSize</em>'
},
xAxis: {
gridLineWidth: 1,
min: -50,
max: 150
},
yAxis: {
min: 0,
max: 18000
},
series: [{
data: [
[8, 6, 6],
[10, 6, 6],
[20, 10, 10],
[30, 20, 20],
[137, 17277, 17277]
]
}]
});
});
前四个气泡显示半圆而不是整圆。
答案 0 :(得分:0)
根据您的数据值,在中心点附近打印气泡。在这种情况下,您需要通过tickPositioner / tickPositions或min / max来调整yAxis的比例。