rrag / react-stockcharts

Highly customizable stock charts with ReactJS and d3
http://rrag.github.io/react-stockcharts
MIT License
3.88k stars 958 forks source link

Trying to change SMA line colour based on its trend #734

Open manokondrangi opened 5 years ago

manokondrangi commented 5 years ago

I am trying to change the SMA line colour by its trend. But after this change SMA line disappeared. Do u have any suggestion ?

<LineSeries yAccessor={sma50.accessor()} stroke={d => d.trend === 'UP' ? green : red} />