gpt4 book ai didi

javascript - 哪个plot.ly json属性允许将鼠标悬停在一行上时显示所有悬停数据

转载 作者:行者123 更新时间:2023-11-27 23:11:15 27 4
gpt4 key购买 nike

我正在 Matlab 中的图形上绘制两条线,并使用 Matlab 库将其转换为 plot.ly。当我使用 'strip' = false json 属性时,它会保留 Matlab 布局。但是,它删除了一项很好的功能,即当您将鼠标悬停在一行上时可以获得所有数据。当 'strip' = false 时,您只能获取与鼠标悬停所在行相关的数据。

有人知道如何使用 'strip' = false 并保留所有悬停吗?

Matlab 中的示例代码:

X = linspace(0,2*pi,50)';
Y = [cos(X), 0.5*sin(X)];
figure
plot(X,Y)

然后生成两个plot.ly图:

fig2plotly(gcf, 'strip', 0);
fig2plotly(gcf, 'strip', 1);

这些可以分别在以下位置找到:

https://plot.ly/~alexdp/0

https://plot.ly/~alexdp/2

请注意悬停行为的差异。

最佳答案

当您使用 strip=false 将 matlab 图转换为 Plotly 图时,hovermode 属性默认设置为 closest,因此仅显示与悬停时最近的曲线相关的数据。要覆盖此行为:

X = linspace(0,2*pi,50);
Y = [cos(X), 0.5*sin(X)];
figure
plot(X,Y)

% Convert the chart..
plotly_fig = fig2plotly(gcf, 'strip', 0)

% Set hovermode to blank (basically disable the attribute)
plotly_fig.layout.hovermode=''

% Send the updated figure to plotly:
resp = plotly(plotly_fig)
url = resp.url

关于javascript - 哪个plot.ly json属性允许将鼠标悬停在一行上时显示所有悬停数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36170964/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com