Package com.inet.report.chart.plot
Class DrawOutOfScale
- java.lang.Object
-
- com.inet.report.chart.plot.DrawOutOfScale
-
- All Implemented Interfaces:
java.io.Serializable
public class DrawOutOfScale extends java.lang.Object implements java.io.SerializableThis class sets the properties for draw out of scale.- Since:
- 8.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static DrawOutOfScaleDO_NOT_DRAWDon't draw the data point with value out of range.static DrawOutOfScaleDRAW_ON_MAXDraw on the min / max the data point with value out of range.static DrawOutOfScaleDRAW_OUT_OF_SCALEDraw out of scale the data point with value out of range.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)static DrawOutOfScalegetDrawOutOfScale(org.w3c.dom.Element element)Reads the XML properties of a of Draw Out Of Scale for LinePlot.inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
DRAW_OUT_OF_SCALE
public static final DrawOutOfScale DRAW_OUT_OF_SCALE
Draw out of scale the data point with value out of range.
-
DRAW_ON_MAX
public static final DrawOutOfScale DRAW_ON_MAX
Draw on the min / max the data point with value out of range.
-
DO_NOT_DRAW
public static final DrawOutOfScale DO_NOT_DRAW
Don't draw the data point with value out of range.
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getDrawOutOfScale
public static DrawOutOfScale getDrawOutOfScale(org.w3c.dom.Element element)
Reads the XML properties of a of Draw Out Of Scale for LinePlot.- Parameters:
element- DOM element- Returns:
- outOfScale for line plot.
- Since:
- 8.0
-
-