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: