Evaluator Column - Type Graph broken in 13.13.8

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 &quot;#[0-5]#
x = keywords;
output(x);
If(InStr(x,&quot;#1#&quot;)&gt;= 0)
     {
	 return(20);
	 }
elseif(InStr(x,&quot;#2#&quot;)&gt;= 0)	 
//elseif(x $= &quot;#2#&quot;)
     {
	 return(40);
	 }
elseif(InStr(x,&quot;#3#&quot;)&gt;= 0)
     {
	 return(60);
	 }
elseif(InStr(x,&quot;#4#&quot;)&gt;= 0)
     {
	 return(80);
	 }
elseif(InStr(x,&quot;#5#&quot;)&gt;= 0)
     {
	 return(100);
	 }
elseif(InStr(x,&quot;#0#&quot;)&gt;= 0)
     {
	 return(0);
	 }	  	 	 
else 
     {
//return(0);
     }</evalcolumn>

Edit Note: The Evaluator Columns Preferences preview still displays graphs correctly in 13.13.8 .

Thanks! Fixed in the next update.

1 Like