I am looking to remove the labels that are in the square in the following picture: https://prnt.sc/26qc8uq. How would I do it? I tried with options: {plugins: {legend: display: false}}
but it didn't seem to work. Package I am using is react-chartjs-2
This is the code:
<Chart type="line" data={{
labels: props.sets[0],
datasets: props.dataset,
options: {
plugins: {
legend: {
display: false,
},
}
}
}} />