在Angular 7中使用highcharts时出错

问题描述 投票:8回答:1

我正在尝试高级图表。我通过cli创建了新的角度应用程序并安装了highcharts和highcharts-angular。我从他们的github页面复制了代码。在第一次运行中,我遇到了以下错误。

ERROR in node_modules/highcharts/highcharts.d.ts(128972,17): error TS2304: Cannot find name 'PlotNetworkDataLabelsFormatterCallbackFunction'.
node_modules/highcharts/highcharts.d.ts(128982,21): error TS2304: Cannot find name 'PlotNetworkDataLabelsFormatterCallbackFunction'.
node_modules/highcharts/highcharts.d.ts(128987,19): error TS2304: Cannot find name 'PlotNetworkDataLabelsTextPath'.
node_modules/highcharts/highcharts.d.ts(128992,15): error TS2304: Cannot find name 'PlotNetworkDataLabelsTextPath'.
node_modules/highcharts/highcharts.d.ts(136653,17): error TS2304: Cannot find name 'PlotPackedBubbleDataLabelsFormatterCallbackFunction'.
node_modules/highcharts/highcharts.d.ts(136658,15): error TS2304: Cannot find name 'PlotPackedBubbleDataLabelsTextPath'.node_modules/highcharts/highcharts.d.ts(237720,14): 
error TS2304: Cannot find name 'SeriesOrganizationNodesLayoutValues'.

我从npm安装了highcharts

npm install highcharts-angular --save

npm install highcharts --save

然后我在app.module.ts中导入HighchartsChartModule并从highcharts-angular导入数组。在app.component.ts和app.component.html我从他们的github页面添加了示例代码。

我超过了错误。我应该安装任何插件或依赖项?

javascript angular highcharts
1个回答
8
投票

我们遇到了同样的问题。 Highcharts于7小时前发布了7.1.0。从那以后我们无法使用7.1.0构建。如果我们锁定到7.0.3构建正常。希望有人会看到这个,今天7.1.1将会出来。

我还添加了一个issue to their repo here

© www.soinside.com 2019 - 2024. All rights reserved.