Highcharts: How to exempt a series from redraw zoom calculations?
问题 In this jsfiddle the chart has a nice zoom effect every time the visiblity of a series is toggled. But when I add the UpperLimit series this effect is lost because that series has the lowest and highest x-values. How can I make the chart zoom in on the series of my choice and keep other series from affecting zoom boundaries? { name: 'UpperLimit', color: '#FF0000', dashStyle: 'ShortDash', showInLegend: false, //affectsZoomBox: false, //No such thing :( data: [ [1, 100], [10, 100] ] }, 回答1: I