experience-experiments / react-easy-chart

[DEPRECATED] - Easy to use React Charting library
http://experience-experiments.github.io/react-easy-chart
BSD 3-Clause "New" or "Revised" License
142 stars 55 forks source link

How to use 2 types of charts together? #123

Closed ArthurBugan closed 5 years ago

ArthurBugan commented 6 years ago

I was thinking about use this lib in my React Project, but I need to use 2 differents types of graphs together is there a way? Its Line and Area

barabba9174 commented 5 years ago

The easiest way is via css, for example if you want the second series as a line you can use: .areaChart > .area:nth-child(1) { fill: none !important; }

ArthurBugan commented 5 years ago

Thank you, I didnt start to use this library on my project, but it looks good.