当用户调整页面大小时,图形变得混乱。

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

我已经完成了我的图表,并已经开始尝试把它放到一个。<article> 标签的事情是,当我调整我的页面大小时,它变得混乱,并停止适合的标签内,有什么办法来解决这个问题?

截图。

What it should look likeWhat it actually looks like when resizing

代码:

<article>
   <canvas id="myChart" style="width:676px;height:300px;"></canvas>
   <!-- if there is a way It would be cool for it just to fill to the article -->
</article>
var myChart = new Chart(ctx, {
    type: "line",
    data: {.....},
    options: {...}
article {
    display: flex;
    height: 300px;
    background: var(--page-content-blockColor);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

我试过了

responsive:true,
maintainAspectRatio: false
chart.js
1个回答
0
投票

谢谢用户:Ezra Siton,

改用VH和VW似乎对我有用!

:)

(发这个帖子是为了让我可以结束这个问题)

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