AxisSpec.setGridOnTop(boolean)
Specifies whether axis grid lines are layered over or under the chart elements.
Parameter
boolean true: grid overlays elements
false: elements overlay grid
Note: Script that modifies 'graph' should be placed at the element level. See Adding Element-Level Script in Report Scripting and Adding Component Script in Dashboard Scripting for more information.
Example (Report or Viewsheet)
dataset = [["State","Quantity"],["NJ",20000],["NY",30000]];
graph = new EGraph();
var elem = new IntervalElement("State", "Quantity");
var qscale = new LinearScale("Quantity");
var aspec = new AxisSpec();
aspec.setGridOnTop(true);
aspec.setGridColor(java.awt.Color(0xff0000));
aspec.setGridStyle(Chart.DASH_LINE);
qscale.setAxisSpec(aspec);
graph.setScale("Quantity", qscale);
graph.addElement(elem);

See Also
DataSet, to use a Data Block or query as the dataset source.
| << AxisSpec.setGridColor(value) | © 1996-2013 InetSoft Technology Corporation (v11.5) | AxisSpec.setGridStyle(value) >> |