Chartjs-How to decrease border width in any charts?

1👍

You have misspelled borderWidth as borederWidth in your demo provided. Fixing that on your chartData gives you the desired result.

...
chartData = [
  {
    ...
    borderWidth: 1, // <-- fix the spelling here
    ...
  },
  ...
];
...

Fixing this will give the following look:

Fixed look

Leave a comment