Hi,
In the documentation under
chart xml api - xyplotcharts - scatter(xyplot) chart - Divisional Lines and Grids
it states
"Using this set of attributes, you can control the properties of divisional lines, zero plane and alternate color bands.
Divisional Lines are horizontal or vertical lines running through the canvas. "
I have the horizontal lines working fine but cant seem to get the vertical lines working,
I cannot find relevant parameters, although I have tried the following to no avail:
numVDivLines='9'
showXAxisValues='1'
I have got the effect I would like using
categories verticalLineColor='666666' verticalLineThickness='1'>
category label='20' x='20' showVerticalLine='1'/>
category label='30' x='30' showVerticalLine='1'/>
category label='40' x='40' showVerticalLine='1'/>
category label='50' x='50' showVerticalLine='1'/>
category label='60' x='60' showVerticalLine='1'/>
category label='70' x='70' showVerticalLine='1'/>
category label='80' x='80' showVerticalLine='1'/>
category label='90' x='90' showVerticalLine='1'/>
category label='100' x='100' showVerticalLine='0'/>
/categories>
however this does not auto scale and I would like to avoid writing my own custom scaling code as with horizontal lines if possible,
thanks,
Mark