Reggino / react-svg-gauge

Justgage inspired .svg gauge for React

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change font color of formatter

osvaldoalvaradodev opened this issue · comments

Have way to change color in valueFormatter prop?

I change to pass style but only works fontSize and fontFamily.

` valueLabelStyle ={{
fontSize:100,
fontFamily:'Arial',
color:'blue'

        }}`

image

i try to change colors of top label style but dont works too.

Only works fontSize.

This is a issue of last version ?

` topLabelStyle ={{
backgroundColor: '#00FF00',
color:'red',
fontSize:60,
}}
valueLabelStyle ={{
backgroundColor: '#00FF00',
color:'red',
fontSize:60,

        }}`

image

commented

Since SVG uses "fill" to determine font color but not "color" in classical css.
Please try
valueLabelStyle={{
fontSize:100,
fontFamily:'Arial',
fill:'blue'
}}

Thanks! i tri and works!!! :)