我试图实现一个图表,该图表具有今年和去年的两个值,所以我想使最大值等于两个值。
我正在动态加载数据。
这是我设置选项的代码的一部分:
lineChartOptionsVendas: ChartOptions = {
responsive: true,
scales: {
yAxes: [
{
id: "ano_anterior",
position: "left",
ticks: {
fontColor: "rgba(0, 0, 0, 1)",
beginAtZero: true
}
},
{
id: "este_ano",
position: "right",
ticks: {
fontColor: "rgba(0, 0, 0, 1)",
beginAtZero: true
}
}
]
},
plugins: {
datalabels: {
align: "top",
anchor: "center",
font: {
weight: "bold"
}
}
}
};
我正在使用: https://github.com/valor-software/ng2-charts/-Versão2.2.4-Angular 8