如何在溢出的标记被向下推时固定 y 轴指南

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

我在 React 代码库中使用 Plotly.js。 所以,我想做的基本上就是你在图片中看到的:

Expected Behaviour

我希望 y 轴指南保持固定,每当一个值超出指南的最高值时,它就会被压缩/调整大小。

但这就是目前正在发生的事情:

Current Behaviour

到目前为止,我尝试将以下设置添加到 yaxis 布局配置中:

fixedrange: true

range: [0, 45], // set the fixed range of the y-axis

automargin: true, // add margins around the fixed range of the y-axis

autosize: true,

reactjs graph plotly plotly.js
© www.soinside.com 2019 - 2024. All rights reserved.