Chart.js中的宽度和高度

时间:2019-02-22 18:05:59

标签: javascript css chart.js

我正在使用Chart.js,发现它对以下两个style的识别不同— <canvas style="">运作良好,而<style>canvas{}则使图表失真。这是两个例子。

<!doctype html>
<html>

<canvas id=Figure1 style="width:640px;height:480px"></canvas>

<script src=https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js></script>
<script>
new Chart(document.getElementById("Figure1"),{type:"scatter",data:{datasets:[{data:[{x:1,y:1},{x:2,y:2},{x:3,y:3}]}]},options:{responsive:false}});
</script>
</html>

此代码不会扭曲图像,因此我想通过以下代码全局应用设置。

<!doctype html>
<html>

<style>canvas{width:640px;height:480px}</style>

<canvas id=Figure1></canvas>
<script src=https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js></script>
<script>
new Chart(document.getElementById("Figure1"),{type:"scatter",data:{datasets:[{data:[{x:1,y:1},{x:2,y:2},{x:3,y:3}]}]},options:{responsive:false}});
</script>
</html>

我只是在这段代码中重新放置了width:640px;height:480px,但是它奇怪地拉伸了图像。我是否必须始终使用<canvas style="">来调整Chart.js图像的大小?

1 个答案:

答案 0 :(得分:1)

有很多方法可以指定画布的高度和宽度。但是,您尝试使用的两种方法有什么区别?好吧,完整的解释可以在这里找到 Canvas is stretched when using CSS but normal with "width" / "height" properties

P.S您可以通过以下方式使图表具有响应性:true并将画布放在div中。这样,画布将始终采用其容器的尺寸。

let line_chart = document.getElementById("line-chart");

    new Chart(line_chart, {
    type: 'scatter',
    data: {
      datasets: [{ 
            label: 'Sample Data',
            data: [{ x: 1, y: 1 }, { x: 2, y: 2 }, { x: 3, y: 3 }] }],
      },
    options: {
      responsive:true,
    }
  });
/* If you change the wrapper's height and width, the chart will follow the wrapper's dimensions */
.wrapper{
  height: 200px;
  width: 300px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.js"></script>

<div class="wrapper">
  <canvas id="line-chart"></canvas>
</div>