highcharts 类型'number'与类型'XrangePointOptionsObject'没有共同的属性,ts -React

yh2wf1be  于 2022-11-10  发布在  Highcharts
关注(0)|答案(1)|浏览(170)

我得到这个错误对我的Reacthighcharts应用程序Type 'number' has no properties in common with type 'XrangePointOptionsObject'.ts - React

我查了很多论坛,所有的答案都是有Angular 的,而不是React的,在做了大量的研究后,我发现了一个链接https://github.com/highcharts/highcharts/issues/13460#issuecomment-627308013,但我不知道如何在我的React打字应用程序中实现。
谁能帮我一下。

ssm49v7z

ssm49v7z1#

您需要在API中提到的系列选项中定义系列type,否则TS无法验证这些选项。

series: [
  {
    type: "line",
    name: "John",
    data: [5, 3, 4, 7, 2]
  }
]

现场演示:https://stackblitz.com/edit/highcharts-angular-line
API引用:https://api.highcharts.com/highcharts/series.line

相关问题