Package com.storedobject.chart
Class Tooltip
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.Tooltip
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasData
Tooltip to display.
In most cases, default tooltips are good enough. However, you can still create customized tooltips using
these methods: append(String)
, append(AbstractDataProvider)
, append(Chart)
,
newline()
.
- Author:
- Syam
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add parts of this component to the chart.append
(AbstractDataProvider<?> data) Add a data point to the tooltip.Add a data point of a specific chart to the tooltip.Add some text as part of the tooltip.void
declareData
(Set<AbstractDataProvider<?>> dataSet) Declare the data set owned by thisComponentPart
by adding it to theSet
provided.void
Encode the JSON string with the properties of this.final Tooltip.Type
getType()
Get the type of this tooltip.newline()
Add a new line to the tooltip.void
setType
(Tooltip.Type type) Set the type of this tooltip.void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from class com.storedobject.chart.VisiblePart
hide, show
Methods inherited from class com.storedobject.chart.AbstractPart
equals, getId, getLabelTag, getName, getSerial, getZ, hashCode, hasId, setSerial, setZ
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getId, getName, getRenderingIndex, getSerial, setName, setRenderingIndex, setSerial
-
Constructor Details
-
Tooltip
public Tooltip()
-
-
Method Details
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Overrides:
encodeJSON
in classVisiblePart
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
validate
public void validate()Description copied from interface:ComponentPart
This method is invoked bySOChart
to check if the component or part is valid or not.- Specified by:
validate
in interfaceComponentPart
- Overrides:
validate
in classVisiblePart
-
getType
-
setType
Set the type of this tooltip.- Parameters:
type
- Type of the tooltip.
-
append
-
newline
-
append
Add a data point to the tooltip.- Parameters:
data
- Data point will be taken from this data.- Returns:
- Self reference.
-
append
Add a data point of a specific chart to the tooltip. Mostly, you can useappend(AbstractDataProvider)
to add data point but some special charts (such asHeatmapChart
) have specialized internal data and data points from such data can be added using this method.- Parameters:
chart
- Chart from which data point should be taken.- Returns:
- Self reference.
-
declareData
Description copied from interface:HasData
Declare the data set owned by thisComponentPart
by adding it to theSet
provided.- Specified by:
declareData
in interfaceHasData
- Parameters:
dataSet
- Set to which all the data owned by thisComponentPart
needs to be added.
-
addParts
Description copied from interface:Component
Add parts of this component to the chart. This will be invoked if the component was already added to the chart, and it is about to be rendered.
-