yaxis
Provides a shortcut to set axis properties for all Y-axes.
Example
Chart1.yAxis.minorIncrement = 1000;
Chart1.yAxis.labelColor = [255,0,0]
The available properties are listed in General Axis Properties and Measure Axis Properties.
To set properties for a particular Y-axis (e.g., 'Total'), use the axis property together with the axis name:
Chart1.axis['Sum(Total)'].minorIncrement = 1000;
Chart1.axis['Sum(Total)'].labelColor = [255,0,0];
| << xaxis | © 1996-2013 InetSoft Technology Corporation (v11.5) | y2axis >> |