我需要在宽度非常受限的页面上实现plotly.js图表。结果,工具提示被部分切割。是否有可能导致工具提示不受plotly.js容器大小的限制?
我在代码笔上的代码示例:https://codepen.io/anatoly314/pen/gOavXzZ?editors=1111
//my single trace defined as following but it's better to see example at codepen
const yValue1 = [1000];
const trace1 = {
x: [1],
y: yValue1,
name: `Model 1`,
text: yValue1.map(value => Math.abs(value)),
type: 'bar',
textposition: 'outside'
};
根据设计,图表的任何部分都不可能溢出其容器。