Pauan
Pauan
Version 2.3.0 now has an `experimental.directExports` option which enables top-level await. Because this generates a top-level `await` in the code, it requires you to set the Rollup `format` to "es"...
Do you get any error messages when you run `npm install`? Are you in the `examples/webpack` directory when you run `npm install`? --- When using the `amcharts3-react` plugin, you must...
@tarnasky Thanks! I'll consider adding your steps to the README.
@gokulraj809040 We have a working example [here](https://github.com/amcharts/amcharts3-angular2/tree/master/examples/angular-cli). You can set the `dataProvider` when making the chart: ```typescript this.chart = this.AmCharts.makeChart("chartdiv", { "dataProvider": [] }); ``` Or you can change the...
@jeslomo Yes, you can use AmStock: 1. Add the following `` tags to your `index.html` file: ``` ``` 2. Use the `stock` type for the configuration: ``` ngAfterViewInit() { this.chart...
Hi @vasya10, AmCharts is a client-side library only, it does not support server-side rendering at all. This is not a limitation in `amcharts3-react`, it is a limitation in AmCharts itself....
Hi @vasya10, I changed it so that it will not break if `window` is not defined. Please try out version `1.1.2` of `amcharts3-react` and let me know if it solves...
@justinbleach Why are you calling `this.AmCharts.updateChart` immediately after creating the chart? Does it work correctly if you remove `this.AmCharts.updateChart`?
@Danny-P Could you please post your `.angular-cli.json`?
The AmCharts service does not have any global properties, but you can use `window.AmCharts.processDelay = 1000` to set the `processDelay` property. This works with all of the other global AmCharts...