amcharts / amcharts3-react

Official amCharts V3 React component
Apache License 2.0
118 stars 50 forks source link

Pie Chart #38

Closed ivgrin closed 7 years ago

ivgrin commented 7 years ago

Please, update index.js:

require("amcharts3/amcharts/amcharts.js"); require("amcharts3/amcharts/serial.js"); require("amcharts3/amcharts/themes/light.js");

// add this line to make pie charts work require("amcharts3/amcharts/pie.js");

Pauan commented 7 years ago

Hi @ivgrin

We've released amcharts3-react version 2.0, which uses a different system for loading AmCharts.

Rather than using require, you must instead use <script> tags in your HTML, like this:

<script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
<script src="https://www.amcharts.com/lib/3/themes/light.js"></script>
<script src="https://www.amcharts.com/lib/3/pie.js"></script>

You can find more details here.