Pauan
Pauan
@codegastudio You need to use `npm install amcharts/amcharts3-angular2 --save`
@codegastudio @meiraleal @sumanth1801 Can you please share your full code in a codepen, gist, or git repo, so I can take a look?
Hi @rahulscp, You do not need to call `validateNow()`, instead it is called for you automatically when the chart changes. If you want to call other methods, the best way...
@QuocMinhTran As explained on the main page, if you want to make a change to your chart's configuration, you need to first make a deep copy: ``` // Make a...
@tscislo Originally we did try using generics, but it caused a lot of extra complexity and problems, because the generic has to be used all over the place. In most...
@SaraNaifar I apologize for the delay. Why are you using `setState` to update the `dataProvider` and then afterwards pushing into the `dataProvider`? You should make all your changes first and...
@foodaka You have to add `amstock3` to your `package.json`, like this: ``` { "dependencies": { "amstock3": "amcharts/amstock3" } } ``` Then you have to `require` the AmStock library, like this:...
@codestitch Please provide me your code in a Gist or GitHub repo so I can figure out what the problem is.
@iddan I'm sorry for the delay. I plan to make some changes to the [animate plugin](https://github.com/amcharts/animate) which will allow for a declarative API. In the meantime, you can use the...
The README does not assume that you are using angular-cli, so it uses the AmCharts CDN. You are right that it might be a good idea to put in some...