Hi Team,
How do i set the border radius for a ChartJS3 bar chart. I have seen HoverBorderRadius but not BorderRadius.
Regards.
Hi Nicholas,
It is indeed a missing property, I’ve logged it as an enhancement internally and it should be included in the next release!
What you can do now, is extending the “BarDataSet” class as follows:
public class EnhancedBarDataSet : BarDataSet
{
public int BorderRadius { get; set; }
}
Usually, if a property is missing in our implementation, you can extend the base class and enhance it yourself, or you can add it to the source code and compile it yourself!
All of our non premium extensions are open-source, and you can find them on GitHub !
HTH,
Alaa
//
Please login first to submit.