我正在使用Plotly.js在Angular 6中构建一个散点图应用程序。
我需要将默认的modeBar选项设置为“显示悬停时显示最近的数据”(文档中的hoverClosestCartesian)。
我能够从modeBar删除选项,并且已经使用[config]选项删除了所有我不想要的内容。至于设置活动选项,我不知道如何更改。
一些文档可以在这里找到==> https://github.com/plotly/plotly.js/blob/master/src/components/modebar/buttons.js
MyConfig = {
scrollZoom: true,
displayLogo: false,
modeBarButtonsToRemove:['sendDataToCloud', 'select2d', 'lasso2d', 'hoverCompareCartesian', 'toggleSpikelines']
};
答案 0 :(得分:1)
尝试layout.hovermode = 'closest'
(https://plot.ly/javascript/reference/#layout-hovermode)。