【发布时间】:2021-09-10 21:38:11
【问题描述】:
使用 exporting(highchart) 得到以下错误: src/app/desktop/module/dashboard/dashboard.module.ts(24,1) 中的错误:错误 TS2349:无法调用类型缺少调用签名的表达式。输入 'typeof import("C:/website/UI_Dashboard/node_modules/highchart s/modules/exporting.src")' 没有兼容的调用签名。
在模块中:
import {ChartModule, HIGHCHARTS_MODULES} from 'angular-highcharts';
import * as more from 'highcharts/highcharts-more.src';
import * as highcharts from 'highcharts';
import * as exporting from 'highcharts/modules/exporting.src';
import * as offline from 'highcharts/modules/offline-exporting';
exporting(highcharts);
offline(highcharts);
我应该怎么做才能解决这个问题?
【问题讨论】:
标签: highcharts angular7