1👍
✅
The solution found was to setting the z property of the scale.ticks:
{
type: "polarArea",
options:{
scale: {
ticks: {
z:3
}
}
}
}
👍:0
the answer above worked for me only after I defined an axis, r in this case as it was also an polar chart.
options: {
responsive: true,
scales: {
r: {
ticks: {
z: 1
}
}
}
};