Pedro Vieira
Pedro Vieira
You are setting the chart id dynamically. Maybe the `makeChart` is calling before the template is done ([Angular lifecycle](https://angular.io/docs/ts/latest/guide/lifecycle-hooks.html)). Also, update your code following the [new instructions](https://github.com/amcharts/amcharts3-angular2), use the chart...
And please don't forget to place it in https://github.com/vuejs/awesome-vue#charts
@romakov Try to place it inside a `this.$nextTick(() => { /* AmCharts.makeChart here */ })`. That is the majority difference between your setup and mine. The other thing is that...
Here I followed the [amCharts 3 Vue.js with Vue CLI 3 tutorial](https://www.amcharts.com/docs/v4/getting-started/integrations/using-vue-js/). Since it is not using the Export functionality, why it loads using [@vue/cli 3](https://github.com/vuejs/vue-cli) (tested on 3.0.0-rc.3) and...
@Pauan thanks for checking! @ailon thanks for your effort! Your workarround only works when production mode (`vue-cli-service serve --mode=production`). It also broken the build process when using `--modern` flag (`vue-cli-service...
I created a base that you can download and edit to test it ~~https://codesandbox.io/s/828rxoq2lj~~ https://github.com/peluprvi/vue-amcharts4-teste Maybe there is a way to use `babel-plugin-transform-imports` to avoid full import the lib.
For Vue, it is related to https://github.com/vuejs/vue-cli/issues/979 and documented there on https://cli.vuejs.org/guide/html-and-static-assets.html#prefetch
Even by importing this way, it is including `pdfmake`, `xlsx` and others in the bundle process (Vue environment), increasing the bundle process time: 
@guillerodriguez I was looking almost the the issue as yours. In my case, I have `always_issue_new_refresh_token => true` and `unset_refresh_token_after_use => false`. `always_issue_new_refresh_token` is used to create a new refresh_token...
I'm also using it with tsup. I'm currently using `bundle: true` and `inject: true` as an alternative, but the project requires to import the CSS file separately. The main goal...