在Chart.js中设置图表的高度

时间:2017-01-31 08:47:55

标签: javascript jquery chart.js

我想用Chart.js绘制一个水平条形图,但是它会不断缩放图表,而不是使用高度我将画布分配给脚本。

有没有办法从脚本中设置图形的高度?

请参阅小提琴:Jsfidle

HTML

<div class="graph">
  <div class="chart-legend">

  </div>
  <div class="chart">
    <canvas id="myChart"></canvas>
  </div>
</div>

的JavaScript

var ctx = $('#myChart');

ctx.height(500);

var myChart = new Chart(ctx, {
    type: 'horizontalBar',
    data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: '# of Votes',
            data: [12, 19, 3, 5, 2, 3],
            backgroundColor: [
                'rgba(255, 99, 132, 0.2)',
                'rgba(54, 162, 235, 0.2)',
                'rgba(255, 206, 86, 0.2)',
                'rgba(75, 192, 192, 0.2)',
                'rgba(153, 102, 255, 0.2)',
                'rgba(255, 159, 64, 0.2)'
            ],
            borderColor: [
                'rgba(255,99,132,1)',
                'rgba(54, 162, 235, 1)',
                'rgba(255, 206, 86, 1)',
                'rgba(75, 192, 192, 1)',
                'rgba(153, 102, 255, 1)',
                'rgba(255, 159, 64, 1)'
            ],
            borderWidth: 1
        }]
    },
    maintainAspectRatio: false,
    options: {
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero:true
                }
            }]
        }
    }
});

12 个答案:

答案 0 :(得分:247)

如果在选项中禁用维护纵横比,则使用可用高度:

var chart = new Chart('blabla', {
                type: 'bar',
                data: {
                },
                options: {
                    maintainAspectRatio: false,
                }
            });

答案 1 :(得分:51)

似乎var ctx = $('#myChart');正在返回一个元素列表。您需要使用ctx[0]来引用第一个。 高度也是一种属性,而不是一种功能。

我在代码中这样做了:

var ctx = document.getElementById("myChart");
ctx.height = 500;

答案 2 :(得分:42)

最简单的方法是为画布创建一个容器并设置其高度:

<div style="height: 300px">
  <canvas id="chart"></canvas>
</div>

并设置

options: {  
    responsive: true,
    maintainAspectRatio: false
}

答案 3 :(得分:13)

这个对我有用:

我从HTML设置高度

canvas#scoreLineToAll.ct-chart.tab-pane.active[height="200"]
canvas#scoreLineTo3Months.ct-chart.tab-pane[height="200"]
canvas#scoreLineToYear.ct-chart.tab-pane[height="200"]

然后我禁用了维持宽高比

options: {
  responsive: true,
  maintainAspectRatio: false,

答案 4 :(得分:10)

您可以将画布元素包装在相对位置的父div中,然后将其设置为所需的高度,并在选项中设置maintainAspectRatio:false

//HTML
<div id="canvasWrapper" style="position: relative; height: 80vh/500px/whatever">
<canvas id="chart"></canvas>
</div>

<script>
new Chart(somechart, {
options: {
    responsive: true,
    maintainAspectRatio: false

/*, your other options*/

}
});
</script>

答案 5 :(得分:5)

他是对的。如果你想继续使用jQuery,你可以这样做

var ctx = $('#myChart')[0];
ctx.height = 500;

var ctx = $('#myChart');
ctx.attr('height',500);

答案 6 :(得分:4)

您应该将canvas元素的html height属性用作:

<div class="chart">
    <canvas id="myChart" height="100"></canvas>
</div>

答案 7 :(得分:3)

将图表的aspectRatio属性设置为0为我做了诀窍......

    var ctx = $('#myChart');

    ctx.height(500);

    var myChart = new Chart(ctx, {
        type: 'horizontalBar',
        data: {
            labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
            datasets: [{
                label: '# of Votes',
                data: [12, 19, 3, 5, 2, 3],
                backgroundColor: [
                    'rgba(255, 99, 132, 0.2)',
                    'rgba(54, 162, 235, 0.2)',
                    'rgba(255, 206, 86, 0.2)',
                    'rgba(75, 192, 192, 0.2)',
                    'rgba(153, 102, 255, 0.2)',
                    'rgba(255, 159, 64, 0.2)'
                ],
                borderColor: [
                    'rgba(255,99,132,1)',
                    'rgba(54, 162, 235, 1)',
                    'rgba(255, 206, 86, 1)',
                    'rgba(75, 192, 192, 1)',
                    'rgba(153, 102, 255, 1)',
                    'rgba(255, 159, 64, 1)'
                ],
                borderWidth: 1
            }]
        },
        maintainAspectRatio: false,
        options: {
            scales: {
                yAxes: [{
                    ticks: {
                        beginAtZero:true
                    }
                }]
            }
        }
    });
myChart.aspectRatio = 0;

答案 8 :(得分:0)

只需添加@numediaweb

给出的答案

如果您是因为按照说明设置SAML2.0而将头撞在墙上,那么:我最初是从网站上使用Chart.js和Angular 2+的示例中复制代码:

maintainAspectRatio=false

要使其正常工作,必须删除嵌入的(且不必要的) <div style="display: block"> <canvas baseChart [datasets]="chartData" [labels]="chartLabels" [options]="chartOptions" [legend]="chartLegend" [colors]="chartColors" [chartType]="chartType"> </canvas> </div> ,而不是为封闭的div定义一个类,并在CSS中定义其高度。

一旦这样做,图表应具有响应宽度,但高度应固定。

答案 9 :(得分:0)

需要图表填充父元素100%,而不是手动设置高度,问题是迫使父div始终填充剩余空间。

设置响应式和比率式选项(签出相关的chartjs doc)后,以下CSS可以解决问题:

html

<div class="panel">
  <div class="chart-container">
    <canvas id="chart"></canvas>
  </div>
</div>

scss:

.panel {
  display: flex;

  .chart-container {
    position: relative;
    flex-grow: 1;
    min-height: 0;
  }
}

答案 10 :(得分:0)

我创建了一个容器并将其设置为所需的视口高度(取决于图表的数量或图表的特定大小):

.graph-container {
width: 100%;
height: 30vh;
}

要动态调整屏幕大小,我将容器设置如下:

*Small media devices specific styles*/
@media screen and (max-width: 800px) {
.graph-container {
        display: block;
        float: none;
        width: 100%;
        margin-top: 0px;
        margin-right:0px;
        margin-left:0px;
        height: auto;
    }
}

设置图表的以下option属性当然非常重要(已多次提及):

options:{
    maintainAspectRatio: false,
    responsive: true,
}

答案 11 :(得分:0)

您还可以将尺寸设置为画布

<canvas id="myChart" width="400" height="400"></canvas>

然后将响应选项设置为 false ,以始终将图表保持在指定的大小。

options: {
    responsive: false,
}