I'm new to react. By my research, I figured out that React-D3-component can serve my purpose.
I'm looking for an example of a Multi-series Line chart with tooltip and zoomable function. Basic line chart would also make this trick for my first steps.
I've a create-react-app, boilerplate ready. I need to put up this graph into a create-react-app project.
Please guide me through an example, which explains step by step how to implement this kind of graph.
Here are a few steps to do in order to make your app work:
Config your create-react-app boiler plate with Webpack and make sure you can run it without React-D3-component module.
Find the homepage component (normally main.js) try to modify some basic HTML elements and see if you can see the changes on page with hot-reloading. For instance, adding a H1 red tag.
Install React-D3-component module with npm command:
Start adding React-D3-component into your homepage component you just modified by importing the module:
Follow the example here, and create your chart components in your homepage.
This workflow should work for any React modules for testing purposes.