Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
850 views
in Technique[技术] by (71.8m points)

javascript - How to import exporting.js and export-data.js using angular2-highcharts and AOT compiler?

I'm using angular2-highcharts and my chart works just fine, but I need to export the chart to XLS.

All I need to achieve this is doing

HighchartsExporting(Highcharts);
HighchartsExportData(Highcharts);

somewhere in the code, and the export options will show up by the chart.

The problem is how to import HighchartsExporting and HighchartsExportData properly, because the standard solution

@NgModule({
    imports: [
      BrowserModule, 
      ChartModule.forRoot(
        require('highcharts'),
        require('highcharts/modules/exporting')
      ],

won't work with AOT, giving me some "Error encountered resolving symbol values statically" at compile time.

I can get it to work by doing

import * as HichartsExporting from 'highcharts/modules/exporting';
import * as HighchartsExportData from 'highcharts/modules/export-data';

as suggested here, but it gives me 2 errors:

  • Error TS2497: Module '"xxxx/highcharts/modules/exporting"' resolves to a non-module entity and cannot be imported using this construct. - JIT compilation
  • Cannot find module 'highcharts/modules/export-data'. - AOT compilation

I can get around this by doing

import HichartsExporting  = require('highcharts/modules/exporting');
import HighchartsExportData = require('highcharts/modules/export-data');

as suggested here, but after AOT compilation, I get "Uncaught ReferenceError: require is not defined" at runtime.

All solutions seem to work fine in practice, I just can't compile them. Any suggestions are welcome.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can create an instance of Highcharts with all modules loaded like HighchartsModule(Highcharts) and then pass the instance to forRoot function as explained in the angular2-highcharts docs.

You should be able to load the modules using require or import.

import * as Highcharts from 'highcharts';
require('highcharts/modules/exporting')(Highcharts);

or

import * as Highcharts from 'highcharts';
import * as HC_exporting from 'highcharts/modules/exporting';
HC_exporting(Highcharts);

and next the same as in the mentioned docs:

@NgModule({
    ...
    imports: [
      BrowserModule, 
      ChartModule.forRoot(
-       require('highcharts'),
+       Highcharts
      )
    ],
})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...