Plotly.js,在图表容器外显示工具提示

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

我需要在宽度非常受限的页面上实现plotly.js图表​​。结果,工具提示被部分切割。是否有可能导致工具提示不受plotly.js容器大小的限制?

enter image description here

我在代码笔上的代码示例: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'
      };
d3.js plotly plotly.js
1个回答
0
投票

根据设计,图表的任何部分都不可能溢出其容器。

© www.soinside.com 2019 - 2024. All rights reserved.