reporting: change grid option to showGrid

time-shift
Houtan Bastani 2013-05-13 16:27:00 +02:00
parent a5194b4f5e
commit 89b0bd0904
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ end
h = figure('visible','off');
hold on;
box on;
if o.grid
if o.showGrid
grid on;
set(gca, 'GridLineStyle', '--');
end

View File

@ -52,7 +52,7 @@ o.shade = '';
o.shade_color = [0 1 0];
o.shade_opacity = .2;
o.grid = true;
o.showGrid = true;
o.legend = false;
o.legend_boxoff = false;
@ -93,7 +93,7 @@ assert(ischar(o.config), '@graph.graph: config file must be a string');
assert(ischar(o.xlabel), '@graph.graph: xlabel file must be a string');
assert(ischar(o.ylabel), '@graph.graph: ylabel file must be a string');
assert(ischar(o.figname), '@graph.graph: figname must be a string');
assert(islogical(o.grid), '@graph.graph: grid must be either true or false');
assert(islogical(o.showGrid), '@graph.graph: showGrid must be either true or false');
assert(islogical(o.legend), '@graph.graph: legend must be either true or false');
assert(islogical(o.legend_boxoff), '@graph.graph: legend_boxoff must be either true or false');
assert(isint(o.legend_font_size), '@graph.graph: legend_font_size must be an integer');