var fillAlpha = g.getNumericOption('fillAlpha');
var stackedGraph = g.getBooleanOption("stackedGraph");
- var fillStepPlot = g.getBooleanOption("stepPlot") && g.getBooleanOption("fillStepPlot");
var colors = g.getColors();
// For stacked graphs, track the baseline for filling.
if (!g.getBooleanOption('fillGraph', setName)) continue;
var stepPlot = g.getBooleanOption('stepPlot', setName);
+ var fillStepPlot = stepPlot && g.getBooleanOption("fillStepPlot", setName);
var color = colors[setIdx];
var axis = g.axisPropertiesForSeries(setName);
var axisY = 1.0 + axis.minyval * axis.yscale;