隐藏数据标签高图甘特图js

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

我需要隐藏导航器范围之外显示的标签

向左或向右滚动时,会显示尚未看到的数据的标签。当我离开各自的范围时如何隐藏它们?

I leave an image of what is happening to me

This also happens to me, I don't know if I should ask this question separately but I'll leave it in case you can help me

https://jsfiddle.net/carmaro/Lpmc63us/11/

my code

javascript highcharts highcharts-gantt
1个回答
0
投票

如果我理解正确,您可以使用数据排序来隐藏导航器中的系列。但需要注意的是,此选项不适用于甘特图,您可以查看 API 文档:https://api.highcharts.com/gantt/。这种差异可能会导致使用时出现问题。

为了不在导航器中显示该系列,另一种方法是在

navigator.series
中使用空数据数组。例如:

  series: [{
    data
  }],

  navigator: {
    enabled: true,
    series: {
      data: []
    }
  },

演示: https://jsfiddle.net/BlackLabel/3v1rew24/

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