aomran / ember-cli-chart

A simple ember component for adding Charts
https://www.npmjs.org/package/ember-cli-chart
MIT License
138 stars 76 forks source link

borderRadius not working for barCharts #220

Open heshamnimri opened 1 year ago

heshamnimri commented 1 year ago

setting borderRadius in the chartOptions or the dataset does not round the bars

      bar: {
        borderRadius: 5,
        borderRadiusOnAllStackedSeries: true,
      },
      datasets: [
        {
          type: 'bar',
          label: 'Sales',
          data: this.formattedChartData.attributableSales,
          borderColor: this.chartColor,
          backgroundColor: this.chartColor,
          barPercentage: 1.1,
          borderRadius: 5,
        },