Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, Highcharts with Reactjs Working Tutorial.
For Reactjs new comers, please check below link:
Friends, here is the code snippet for Highcharts with Reactjs Working Tutorial and please follow carefully to avoid the mistakes:
1. Firstly friends we need fresh react set up and for this, we need to run below commands into our terminal or if you already have then no need for this step. Importantly we should have latest node version installed on our system:
npx create-react-app therichpost cd therichpost npm start //this will make project run on browser http://localhost:3000/
2. Now friends we need to run below commands into our project terminal to get react high-charts module which will help us to achieve this post working:
npm install react-highcharts --save npm install highcharts npm start
3. Finally friends we just need to add below code inside our project/src/App.js file to get final output on browser:
import React from 'react'; import './App.css'; //HighChart Modules import ReactHighcharts from "react-highcharts"; //HighCharts settings, type and data const config = { chart: { type: 'spline' }, title: { text: 'My chart' }, series: [ { data: [1, 2, 1, 4, 3] } ] }; class App extends React.Component { render() { return ( <div> <h1>Highcharts with Reactjs</h1> <ReactHighcharts config={config}></ReactHighcharts> </div> ) }; } export default App;
Now we are done friends. If you have any kind of query or suggestion or any requirement then feel free to comment below.
Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements.
I will appreciate that if you will tell your views for this post.Nothing matters if your views will good or bad.
Jassa
Thanks
Leave a Reply