ChatGPT解决这个技术问题 Extra ChatGPT

在 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
                }
            }]
        }
    }
});
您可以使用此解决方案更新图表的高宽比 stackoverflow.com/questions/40594025/…
可能相关:github.com/chartjs/Chart.js/issues/3384 Is it possible to make charts a fixed height? #3384

A
Ahmad Khan

如果您在选项中禁用保持纵横比,则它使用可用高度:

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

为什么这不是公认的答案?完美运行
有趣的是,如果您 destroy() 图表然后第二次在同一画布上再次创建它,则画布的高度可能会在销毁后弄乱,并且必须在创建前重新应用。但是,如果您不更改选项,则可以避免破坏并改用 update 方法。
如何让它使用可用高度但也设置最小高度?
解释一下禁用此属性的作用是有意义的(除了已经讨论过的内容)。
如果尚未禁用 responsive 选项,还应禁用它
D
Dipesh Bajgain

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

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

并设置

options: {  
    responsive: true,
    maintainAspectRatio: false
}

谢谢,这里的关键是在图表的选项中将maintainAspectRatio设置为false,否则通过style属性分配的height实际上不会生效。
本的建议是金子。
responsive 选项的默认值为 true。详细信息:chartjs.org/docs/latest/general/…
感谢您澄清 height 属性必须在父元素上,而不是在画布上
这是唯一对我有用的答案。其他答案不起作用。谢谢。
t
taxilian

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

我在我的代码中这样做了:

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

@MattSaunders 它以像素为单位。
请更新以将 ctx 重命名为 elem 或 ctx 以外的其他名称,因为大多数示例使用 var ctx = document.getElementById(canvasId).getContext('2d');,这只是令人困惑...
对于 jQuery:$("#myChart").css("height",500);
这对我不起作用。
G
Geoff Kendall

您可以将您的画布元素包装在相对定位的父 div 中,然后给该 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>

根据 Chart.js 网站上的文档,这似乎是正确的方法。
图表容器相对位置显然是实现响应高度的唯一方法。以下是相关文档:chartjs.org/docs/2.7.2/general/responsive.html#important-note
i
illusionist

这个对我有用:

我从 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,

v
velval

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

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

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

options: {
    responsive: false,
}

H
Hmerman6006

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

.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,
}

maintainAspectRatio: false 成功了 :)
r
relief.melone

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

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

或者

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

那个美元符号是什么?
$ 符号是一个选择器和 jQuery 的别名
B
Basharat Hussain

您应该为 canvas 元素使用 html height 属性:

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

尽管许多解决方案声明通过画布更新大小,但这对我不起作用。
我弄清楚了问题所在。如果我使用上面的示例并在上面添加您的代码。我的图表不会显示。此行不正确... --> maintainAspectRatio: false, options: { scales: { yAxes: [{ ticks: { beginAtZero:true } }] } }
您需要编辑该行,使其成为 --> options: { maintainAspectRatio: false, responsive: true, scales: { yAxes: [{ ticks: { beginAtZero:true } }] } }
我也有改变宽度的问题? html代码-->
选项:{ maintainAspectRatio: false, responsive: true, scales: { yAxes: [{ ticks: { beginAtZero:true } }] } } 只有高度在变化。
F
Franz Kiermaier

将图表的 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;

很确定 maintainAspectRatio 应该是 options 的属性
A
Andrew

只是为了补充@numediaweb给出的答案

如果您因为按照说明设置maintainAspectRatio=false而将头撞到墙上:我最初从一个示例中复制了我的代码,该示例是在网站上使用带有 Angular 2+ 的 Chart.js 的:

        <div style="display: block">
          <canvas baseChart
                  [datasets]="chartData"
                  [labels]="chartLabels"
                  [options]="chartOptions"
                  [legend]="chartLegend"
                  [colors]="chartColors"
                  [chartType]="chartType">
          </canvas>
        </div>

要使其正常工作,您必须删除嵌入的(和不必要的)style="display: block",而是为封闭的 div 定义一个类,并在 CSS 中定义它的高度。

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


e
ego

需要图表填充父元素 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;
  }
}

R
Ralph

设置chartjs图表的大小可以通过设置周围容器的with来简单地实现:

   <div style="width:400px;">
     <canvas id="myChart"></canvas>
   </div>

但一个重要的细节是,您可能需要在创建图表后resize

var ctx = $('#myChart');
var myChart = new Chart(ctx, {
    ......
    data: {
           ........
    },
    options: {
        responsive: false,
        maintainAspectRatio: true
    }
});
// now resize the new chart to fit into the canvas....
myChart.resize();

A
Adrián Suarez Bais

这里的问题是,maintainAspectRatio 需要在选项节点内,而不是在示例中的同一级别。


C
Charitra Agarwal

看,初始化语句有错误。维护AspectRatio 应该如下所示进入选项对象内

...

options = {
   maintainAspectRatio: false,

 ...
}

...

现在,您可以设置图表父元素的高度,因此这里 div .chart 是 div #myChart 的父元素。因此,指定 div .chart 的高度应该可以正常工作。

考虑以下代码。

<div class="chart" style="height: 500px;">
   <canvas id="myChart"></canvas>
</div>

根据自己改变高度,对我来说 500px 就可以了;)


S
Shashank Bhatt

添加一个相对位置元素,其高度是根据填充计算的(与纵横比相同),但如果您需要该图表不超过某个最大高度,则使用新的强大的 css 最小单位。还要在不支持的地方添加固定的后备填充。

<div class="dashboard-charts" style="position: relative; padding-top:40%; padding-top:min(40%,530px)">
    <div style="position:absolute;width: 100%;height:100%;left: 0;top: 0">
        <canvas id="sales-dashboard-bar"></canvas>
    </div>
</div>

然后在 javascript 的选项对象中将 maintainAspectRatio 设置为 false 以考虑并使用父元素高度,在这种情况下,它是绝对定位的,并且相对于祖父母的大小调整大小。

var mychart = new Chart(document.getElementById("sales-dashboard-bar"),{
    options: {
        maintainAspectRatio: false,
    }
})

因此,图表将以 2.5 的纵横比很好地缩放,直到它达到此处为 530px 的最大高度,然后停止缩放。


A
Abdulsalam

对于反应,这样做有效:

<Doughnut
  data={data}
  height="200px"
  width="200px"
  options={{ maintainAspectRatio: false }}
/>

如果您的选项是大量值,这不起作用..