缩小后删除了Highcharts y轴标签

问题描述 投票:0回答:1

我使用过highcharts 7.0.2版本。

在我的应用程序最初,图表折线图正确绑定,但放大和缩小后,它将在轴标签上创建一个问题。

以下是相同的一些快照。

另外,我在'xy'轴上使用了zooming

 chart: {
    zoomType: 'xy'
    }

1)缩小前的图表

enter image description here

2)缩小qazxsw poi之后的图表

enter image description here

小提琴演示:enter image description here。要重现此问题,您必须进行非常大的缩放。

图表缩放https://jsfiddle.net/ukLaqtyv/

点击重置缩放按钮enter image description here

javascript charts highcharts angular2-highcharts
1个回答
0
投票

这个问题看起来像一个bug,所以我在Highcharts github上报告了它:enter image description here

要解决此问题,您可以通过https://github.com/highcharts/highcharts/issues/10516方法再次设置tickPositions

update

现场演示:yAxis: { events: { afterSetExtremes: function(e) { if ( typeof e.userMin == 'undefined' && typeof e.userMax == 'undefined' ) { this.update({ tickPositions: this.tickPositions }); } } } },

API参考:https://jsfiddle.net/BlackLabel/yx9wtf2p/

© www.soinside.com 2019 - 2024. All rights reserved.