Line series

A line series is a sequence of data points connected by lines, progressing from left to right or top to bottom, if chart is vertical or horizontal, respectively.

The example below creates a red line series. Series are identified by an index, and in this example the line series is receiving the index '1'. The series type is 'line', the first string passed to the 'serie1' parameter.

For a complete list of line series parameters, click here.

For a complete list of parameters shared by series displayed by GraphApplet.class, click here.




<applet code="GraphApplet.class" codebase="../../../demo/applets/classes" archive="GraphChart.jar" width=400 height=250>

<param name="serie1" value="line,LineSeries,ff0000">
<param name="serie1_values" value="100,80,90,40,75,60,85">

</applet>