EchoPoint API - 3.0.0b5
App Webcontainer

echopoint.google.chart.model
Class LineStyle

java.lang.Object
  extended by echopoint.google.chart.model.LineStyle
All Implemented Interfaces:
Serializable

public class LineStyle
extends Object
implements Serializable

A model object used to represent the style for a line drawn. See Line styles documentation for specifications.

Version:
$Id: LineStyle.java 63 2008-08-29 07:46:39Z sptrakesh $
Author:
Rakesh 2008-08-10
See Also:
Serialized Form

Field Summary
 int blankSegmentLength
          The length of the blank segment.
 int segmentLength
          The length of a line segement to draw.
 int thickness
          The thickness of the line to draw.
 
Constructor Summary
LineStyle(int thickness, int... optional)
          Create a new instance using the specified values.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

thickness

public final int thickness
The thickness of the line to draw.


segmentLength

public final int segmentLength
The length of a line segement to draw. Specify 1 for solid lines.


blankSegmentLength

public final int blankSegmentLength
The length of the blank segment. Specify 0 for solid lines.

Constructor Detail

LineStyle

public LineStyle(int thickness,
                 int... optional)
Create a new instance using the specified values. Use this constructor to create a solid line.

Parameters:
thickness - The thickness value to set.
optional - Optionally specify segmentLength and blankSegmentLength in sequence.

EchoPoint API - 3.0.0b5
App Webcontainer