[Chartjs]-How to increase line chart width in ng2-charts?

3👍

This is because you placed the option in the wrong namespace instead of using options.elements.point you need to place it in options.elements.line:

elements: {
  point: {
    radius: 0,
  },
  line: {
    borderWidth: 8
  }
},

Leave a comment