reporting: @series: fix coloring

time-shift
Houtan Bastani 2013-05-17 12:08:35 +02:00
parent e30cbef217
commit 5c1846eb1e
1 changed files with 3 additions and 5 deletions

View File

@ -59,19 +59,17 @@ end
data = o.data(dates); data = o.data(dates);
data = data.data; data = data.data;
for i=1:size(data,1) for i=1:size(data,1)
thisCellData = round(data(i)*precision)/precision;
fprintf(fid, ' &'); fprintf(fid, ' &');
if o.tableShowMarkers if o.tableShowMarkers
if thisCellData < 0 if data(i) < 0
fprintf(fid, '\\color{%s}', o.tableNegColor); fprintf(fid, '\\color{%s}', o.tableNegColor);
elseif thisCellData > 0 elseif data(i) > 0
fprintf(fid, '\\color{%s}', o.tablePosColor); fprintf(fid, '\\color{%s}', o.tablePosColor);
end end
fprintf(fid, '['); fprintf(fid, '[');
end end
fprintf(fid, dataString, thisCellData); fprintf(fid, dataString, round(data(i)*precision)/precision);
if o.tableShowMarkers if o.tableShowMarkers
fprintf(fid, ']'); fprintf(fid, ']');