如何减少任何图表中的边框宽度?

How to decrease border width in any charts?

我正在与 ng2-charts 一起绘制折线图。我想减少线条的粗细(减少边框宽度)。我尝试了 borderWidthlineThickness 属性。但似乎没有任何效果。还有其他选择还是我犯了什么错误?

请看代码

Demo code

您在提供的演示中将 borderWidth 拼错为 borederWidth。在你的 chartData 上修复它会给你想要的结果。

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

解决这个问题会得到以下结果: