xanderdeseyn / react-native-responsive-linechart

A customizable and responsive line or area chart for react-native
https://react-native-responsive-linechart.surge.sh
MIT License
202 stars 46 forks source link

Show different colors on a single line in line chart #108

Closed gayathri-nair03 closed 3 years ago

gayathri-nair03 commented 3 years ago

I need to show 2 different colors in a line. Is that possible here now?

gjakobson commented 3 years ago

I got it done very simply: literally display 2 lines, each in a different color, the 2nd line starting where the 1st line ends.

So for example, if your data is D = [{1,1},{2,1},{3,2},{4,0}] and you want 2 different colors starting in the middle of the series, split it into D1=[{1,1},{2,1}] and D2=[{3,2},{4,0}]

and now very literally do

Works perfectly for me.