Hello
can change legend Label Format view from 1e+06 to 1e6.
Hi saman, I think you are looking for the “Edit Color Legend Properties” and need to figure out the correct format string. I can’t figure out how to remove the sign on the exponent, but could get rid of the extra zero using ‘g’ (“%1.g”).
I believe that ParaView is using python to do the string formatting, which nominally follows C’s printf. If you can figure out the correct format string, you could do what you want. I believe the f, F, e, E format flags all have a minimum of 2 digits in the exponent, so I think ‘g’ is what you want.