3

Is there a way to make bar chart with rounded corners in vue-chartjs? I googled a bit and found that we can extend Bar chart with our implementation of rendering bars as given in this url -

How to put rounded corners on a Chart.js Bar chart

Is there an alternate way of achieving this function in vuejs?

Neha Pandita
  • 31
  • 1
  • 2

1 Answers1

0

You actually do it the same way as in pure chart.js

https://github.com/chartjs/Chart.js/issues/3072

https://github.com/jedtrow/Chart.js-Rounded-Bar-Charts/blob/master/Chart.roundedBarCharts.js

https://github.com/apertureless/vue-chartjs/issues/401

You can create own chart types in vue-chartjs too.

Jakub Juszczak
  • 7,126
  • 3
  • 21
  • 38