Label Format

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.

Hi, there appears to be an issue with the upper and lower bound on the legend when not using scientifici notation. For example:

vs:

I have tried several variations but I cannot get the upper and lower bounds to display unless using scientific notation. Any suggestions?

hello,
using the following format, use f instead of e and g.

Capture