Chart js 剪切标题和图例
Chart js cut the title and the legends
我写了一个 chart.js 图形代码来设置标题和 X 轴和 Y 轴图例。当我更改版本时,两者都在图形中消失了。有人遇到同样的问题吗?
我实际上使用的是 chat.js min.js 版本 3.3.2。
选项代码:
options : {
responsive : true,
hoverMode : 'index',
stacked : false,
title : {
display : true,
text : 'Título do Gráfico'
},
scales : {
yAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Unidade do Gráfico'
}
}]
}
您的选项 object 错误,chart.js 版本 3 有一些重大的重大更改,请阅读所有这些更改的迁移指南:https://www.chartjs.org/docs/master/getting-started/v3-migration.html
对于标题和图例,它们已移至插件部分,比例不再是数组,只是 objects
示例:
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderWidth: 1
}]
},
options: {
plugins: {
title: {
display: true,
text: 'title'
},
legend: {
position: 'bottom'
}
},
scales: {
y: {
ticks: {
font: {
size: 20
}
}
},
x: {
ticks: {
font: {
size: 20
}
}
}
}
}
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.4.0/chart.js"></script>
</body>
我写了一个 chart.js 图形代码来设置标题和 X 轴和 Y 轴图例。当我更改版本时,两者都在图形中消失了。有人遇到同样的问题吗?
我实际上使用的是 chat.js min.js 版本 3.3.2。
选项代码:
options : {
responsive : true,
hoverMode : 'index',
stacked : false,
title : {
display : true,
text : 'Título do Gráfico'
},
scales : {
yAxes: [{
display: true,
scaleLabel: {
display: true,
labelString: 'Unidade do Gráfico'
}
}]
}
您的选项 object 错误,chart.js 版本 3 有一些重大的重大更改,请阅读所有这些更改的迁移指南:https://www.chartjs.org/docs/master/getting-started/v3-migration.html
对于标题和图例,它们已移至插件部分,比例不再是数组,只是 objects
示例:
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderWidth: 1
}]
},
options: {
plugins: {
title: {
display: true,
text: 'title'
},
legend: {
position: 'bottom'
}
},
scales: {
y: {
ticks: {
font: {
size: 20
}
}
},
x: {
ticks: {
font: {
size: 20
}
}
}
}
}
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.4.0/chart.js"></script>
</body>