Evaluator Columns Graphs are no longer being displayed as graphs in 13.13.8 .
An integer or string % is displayed instead.
Reinstalling 13.13.7 fixes the problem.
This is the column I was working on when I found this.
I was going to change it to use the new string operators in 13.13.8 .
<?xml version="1.0"?>
<evalcolumn align="0" attrrefresh="no" autorefresh="yes" customgrouping="no" foldertype="all" graphcol="#ffff00" header="Priority" keyword="Priority" maxstars="5" namerefresh="yes" nocache="no" reversesort="no" supportmarkup="no" title="Priority Graph" type="9">//Priority Tags have the form of "#[0-5]#
x = keywords;
output(x);
If(InStr(x,"#1#")>= 0)
{
return(20);
}
elseif(InStr(x,"#2#")>= 0)
//elseif(x $= "#2#")
{
return(40);
}
elseif(InStr(x,"#3#")>= 0)
{
return(60);
}
elseif(InStr(x,"#4#")>= 0)
{
return(80);
}
elseif(InStr(x,"#5#")>= 0)
{
return(100);
}
elseif(InStr(x,"#0#")>= 0)
{
return(0);
}
else
{
//return(0);
}</evalcolumn>
Edit Note: The Evaluator Columns Preferences preview still displays graphs correctly in 13.13.8 .