Class PlotSeries
java.lang.Object
com.illumon.iris.console.events.plot.series.PlotSeries
- All Implemented Interfaces:
Workspace
,Serializable
- Direct Known Subclasses:
ValueSeries
public abstract class PlotSeries extends Object implements Workspace, Serializable
Base class for a plotting series.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description PlotSeries()
PlotSeries(String seriesName, String oneClickColumn, PlotStyle plotStyle)
-
Method Summary
Modifier and Type Method Description String
getOneClickColumn()
PlotStyle
getPlotStyle()
String
getSeriesName()
org.jdom2.Element
getWorkspaceInfo()
Serialize the class into an element to be stored in the workspaceboolean
isTwinX()
boolean
isTwinY()
void
setTwinX(boolean twinX)
void
setTwinY(boolean twinY)
void
setWorkspaceInfo(org.jdom2.Element workspaceInfo)
Restore the class to the state defined by the data persisted in workspaceInfo
-
Constructor Details
-
PlotSeries
public PlotSeries() -
PlotSeries
-
-
Method Details
-
getSeriesName
-
getOneClickColumn
-
getPlotStyle
-
getWorkspaceInfo
public org.jdom2.Element getWorkspaceInfo()Description copied from interface:Workspace
Serialize the class into an element to be stored in the workspace- Specified by:
getWorkspaceInfo
in interfaceWorkspace
- Returns:
- An
Element
containing the data to persist.
-
setWorkspaceInfo
public void setWorkspaceInfo(org.jdom2.Element workspaceInfo)Description copied from interface:Workspace
Restore the class to the state defined by the data persisted in workspaceInfo- Specified by:
setWorkspaceInfo
in interfaceWorkspace
- Parameters:
workspaceInfo
- AnElement
containing the persisted state.
-
isTwinX
public boolean isTwinX() -
setTwinX
public void setTwinX(boolean twinX) -
isTwinY
public boolean isTwinY() -
setTwinY
public void setTwinY(boolean twinY)
-