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进行报告。单击图表时,应打开一个新选项卡/窗口。我可以通过处理图表中的点击事件来实现这一点。但我无法将光标设为指针。
是的,这是可能的。见光标。 示例(来自该链接)。基本上你为系列设置光标选项:
plotOptions: { series: { cursor: 'pointer', events: { click: function() { alert('You just clicked the graph'); } } } }
如果您想让整个图表可点击,那么您需要处理鼠标悬停/悬停。但是随后您可能会丢失单击位置的详细信息(想要单击系列点,但现在不能,因为您在“顶层”层捕获了它)。