score:0

Accepted answer

i had the same issue, add like this to the system.config.js

map: {
 'ng2-charts': 'npm:ng2-charts'
}

packages: {
'ng2-charts': {
      main: 'ng2-charts.js',
      defaultextension: 'js'
 }
}

and then in your module,

import { chartsmodule } from 'ng2-charts/ng2-charts';

Related Query

More Query from same tag