Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要根据数据对象中的值在 Highcharts 中切换系列中的特定点。这可能吗?我在API中看不到任何可以切换系列中的点的内容。
我知道我可以专门删除点,但我更愿意隐藏它们,因为用户会想要频繁地显示/隐藏,而且我不想每次都重建整个系列。
您可以使用Point.update标记半径并将其设置为 0。
Point.update
selectedPoint.update({marker: { radius: 0 }});
要走的路是使用 point.remove 和 series.addpoint 调用。我不认为 highcharts 有隐藏点的概念。