我想用 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
}
}]
}
}
});
Is it possible to make charts a fixed height? #3384
如果您在选项中禁用保持纵横比,则它使用可用高度:
var chart = new Chart('blabla', {
type: 'bar',
data: {
},
options: {
maintainAspectRatio: false,
}
});
最简单的方法是为画布创建一个容器并设置其高度:
<div style="height: 300px">
<canvas id="chart"></canvas>
</div>
并设置
options: {
responsive: true,
maintainAspectRatio: false
}
maintainAspectRatio
设置为false
,否则通过style
属性分配的height
实际上不会生效。
height
属性必须在父元素上,而不是在画布上
似乎 var ctx = $('#myChart');
正在返回一个元素列表。您需要使用 ctx[0]
引用第一个。高度也是一个属性,而不是一个函数。
我在我的代码中这样做了:
var chartEl = document.getElementById("myChart");
chartEl.height = 500;
var ctx = document.getElementById(canvasId).getContext('2d');
,这只是令人困惑...
$("#myChart").css("height",500);
您可以将您的画布元素包装在相对定位的父 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>
这个对我有用:
我从 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,
您还可以将尺寸设置为画布
<canvas id="myChart" width="400" height="400"></canvas>
然后将响应选项设置为 false 以始终将图表保持在指定的大小。
options: {
responsive: false,
}
我创建了一个容器并将其设置为所需的视口高度(取决于图表数量或图表特定大小):
.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,
}
他是对的。如果你想继续使用 jQuery,你可以这样做
var ctx = $('#myChart')[0];
ctx.height = 500;
或者
var ctx = $('#myChart');
ctx.attr('height',500);
您应该为 canvas 元素使用 html height 属性:
<div class="chart">
<canvas id="myChart" height="100"></canvas>
</div>
将图表的 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
的属性
只是为了补充@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 中定义它的高度。
一旦你这样做了,图表应该有响应宽度但固定高度。
需要图表填充父元素 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;
}
}
设置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();
这里的问题是,maintainAspectRatio 需要在选项节点内,而不是在示例中的同一级别。
看,初始化语句有错误。维护AspectRatio 应该如下所示进入选项对象内
...
options = {
maintainAspectRatio: false,
...
}
...
现在,您可以设置图表父元素的高度,因此这里 div .chart 是 div #myChart 的父元素。因此,指定 div .chart 的高度应该可以正常工作。
考虑以下代码。
<div class="chart" style="height: 500px;">
<canvas id="myChart"></canvas>
</div>
根据自己改变高度,对我来说 500px 就可以了;)
添加一个相对位置元素,其高度是根据填充计算的(与纵横比相同),但如果您需要该图表不超过某个最大高度,则使用新的强大的 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
的最大高度,然后停止缩放。
对于反应,这样做有效:
<Doughnut
data={data}
height="200px"
width="200px"
options={{ maintainAspectRatio: false }}
/>
destroy()
图表然后第二次在同一画布上再次创建它,则画布的高度可能会在销毁后弄乱,并且必须在创建前重新应用。但是,如果您不更改选项,则可以避免破坏并改用update
方法。responsive
选项,还应禁用它