Using amCharts 3 with React

Type tutorial

Intro This article uses an official amCharts React component, available for download on this GitHub repository, or via amCharts CDN. Installation Include React and React-DOM: <script src=”https://npmcdn.com/react@15.3.0/dist/react.min.js”></script> <script src=”https://npmcdn.com/react-dom@15.3.0/dist/react-dom.min.js”></script> Also include AmCharts: <script src=”https://www.amcharts.com/lib/3/amcharts.js”></script> <script src=”https://www.amcharts.com/lib/3/serial.js”></script> <script src=”https://www.amcharts.com/lib/3/themes/light.js”></script> Lastly include the amcharts3-react plugin: <script src=”amcharts3-react.js”></script> Usage You can now use the AmCharts.React component in your React […]