Tamanho da fonte mudança na vista de gráficos

como o tamanho da fonte mudança na vista de gráficos?

You can also ask in English... =]

In the graphic view, you can create components using the server side script, outputing your data´s with any given HTML output.

An example:

###Value output with different background color and font size
var s = "<a ";
if(value > 20)
s += "style=\"background-color:#00ff00;font-size:250%;\"";
else 
s += "style=\"background-color:#ff0000;font-size:250%;\"";
s += ">" + value + "</a>";
return s;  
 
Regards,