Controlling the visibility of scale labels

The parameter graphsetx_scalevisiblelabels gives control over what scale labels shall be displayed or not. It takes a sequence of integer numbers representing the indexes of the only visible labels, ranging from 0 to the maximum number of labels minus 1.
The labels indexes increase from top to bottom or left to right, whether chart is vertical or horizontal, respectively.

The following example sets the indexes of the only visible scale labels to 0, 2 and 4.



<applet code="GraphApplet.class" codebase="../../demo/applets/classes" archive="GraphChart.jar" width=450 height=300>
<param name="title" value="The JetChart Library,Controlling the visibility of scale labels">
<param name="labels" value="l1,l2,l3,l4,l5,l6,l7,l8,l9">

<param name="graphset0_autoscaleon" value="no">
<param name="graphset0_scalemaxvalue" value="20010">
<param name="graphset0_scaleminvalue" value="20000">
<param name="graphset0_scaleincrement" value="2">
<param name="graphset0_scalevalueformat" value="##,###"<

<param name="graphset0_scalevisiblelabels" value="0,2,4">

<param name="graphset0_gridon" value="yes">
<param name="graphset0_gridcolor" value="999999">
<param name="graphset0_gridstyle" value="1">
<param name="serie1" value="area,Area series,009900">
<param name="serie1_values" value="20007,20005,20006,20004,20003,20005,20007,20009,20006">
<applet>