我画成这个样子。宽和高改变不了,还有我的点击事件不能用了,也不报错,他这个宽和高必须是100%吗
图表的宽高都是100%也没关系啊。如果你想把这个图表变小,那你可以通过缩小这个图表外层view的宽高来实现呀.。
<view class="econtainer">
<ec-canvas id="mychart-dom-line" canvas-id="mychart-line" ec="{{ ec }}"></ec-canvas>
</view>
ec-canvas {
width: 100%;
height: 100%;
}
.econtainer {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}