I'm having some serious issues getting any charting library to work with webpack + typescript. I'm working with AmCharts right now and have already had to do work on the definitions file to get module syntax recognized by the typescript compiler.
My webpack config is set up like this:
"resolve": {
extensions: ['', '.webpack.js', '.web.js', '.ts', '.js'],
"alias": {
"config": path.join(__dirname, "../app"),
"amcharts": "amcharts3/amcharts/amcharts.js"
}
},
And in the typescript:
import AmCharts from "amcharts";
Now, this all compiles as expected, but when i do a
console.log(AmCharts) I am left with an empty object.
Does anyone have any experience with getting AmCharts + webpack to play nicely, or a decent alternative charting library that meets the following criteria:
Thanks in advance!
I'm experiencing the same problem import AmCharts from 'amcharts3'
I get an empty object when printing to the console, with the following error:
Uncaught TypeError: _amcharts2.default.makeChart is not a function
ASNWER:
I was able to correct my issue by referencing amcharts using the window variable like so window.AmCharts.makeChart('chartdiv', options)
Hopefully you can use the same approach.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With