vue-echarts-v3 icon indicating copy to clipboard operation
vue-echarts-v3 copied to clipboard

在flex布局下,缩放出现的问题

Open chenyin151 opened this issue 3 years ago • 0 comments

项目中用到了vue-echarts-v3,在flex三栏等分布局中出现缩放问题,具体表现为,舞台拉大Echarts可以正常变大,但是缩小失效,具体代码如下:

 <div :key="3" style="display: flex; flex-direction: row;">
        <div style="flex: 1; border:1px solid red;">
            <IEcharts :option="options" ref="echart" :resizable="true"></IEcharts>
        </div>
        <div style="flex: 1; border: 1px solid red;">
            <IEcharts :option="options" ref="echart1" :resizable="true"></IEcharts>
        </div>
</div>

chenyin151 avatar May 14 '21 06:05 chenyin151