2๐
โ
You are passing the options to the data prop, this is incorrect. You will need to pass the options to the options prop like so:
<Chart type="line"
options={{
plugins: {
legend: {
display: false,
},
}
}}
data={{
labels: props.sets[0],
datasets: props.dataset,
}}
/>
Source:stackexchange.com