esnet / react-timeseries-charts

Declarative and modular timeseries charting components for React
http://software.es.net/react-timeseries-charts
Other
866 stars 284 forks source link

Style the text label in EventChart #360

Closed brenkao closed 5 years ago

brenkao commented 5 years ago

The text color of EventChart's label is always "#444" but my application has a dark background so it is impossible to see the text. I would like to be able to customize the style using a style prop. Thanks!

josueus commented 5 years ago

Just use a function to return a tspan tag and set your desired color with the fill CSS property

brenkao commented 5 years ago

Works great thanks!