Package com.storedobject.chart
Class HeatmapChart
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.Chart
com.storedobject.chart.HeatmapChart
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasAnimation
,HasData
,HasEmphasis
Heatmap chart. A heatmap chart is plotted on a
RectangularCoordinate
system.
A VisualMap
is automatically created unless you set it explicitly to null
via
setVisualMap(VisualMap)
.
- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from class com.storedobject.chart.Chart
Chart.Emphasis, Chart.Label, Chart.LabelPosition
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add heatmap data point.void
Add heatmap data point.void
Add heatmap data point.void
Add heatmap data point.void
Add parts of this component to the chart.protected AbstractDataProvider
<?> Get the data to embed.protected int
Get the index to get the real data value of this chart.final VisualMap
Get theVisualMap
associated with this chart.void
setVisualMap
(VisualMap visualMap) Set aVisualMap
for this chart.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.Chart
addEvent, dataValue, declareData, encodeJSON, getAnimation, getCoordinateSystem, getData, getEmphasis, getEvents, getItemStyle, getLabel, getLabelName, getMarkArea, getMax, getMin, getName, getTooltip, getType, plotOn, plotOn, setAnimation, setColors, setCustomRenderer, setData, setEmphasis, setItemStyle, setLabel, setMarkArea, setName, setTooltip, setType, typeValue
Methods inherited from class com.storedobject.chart.AbstractPart
equals, getId, getLabelTag, 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, getRenderingIndex, getSerial, setRenderingIndex, setSerial
-
Constructor Details
-
HeatmapChart
Constructor.- Parameters:
xData
- Labels on the X-axis.yData
- Labels on the Y-axis.
-
-
Method Details
-
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 classChart
- Throws:
ChartException
- Raises exception if the component or part is not valid.
-
addData
Add heatmap data point.- Parameters:
xIndex
- X-index at which data needs to added.yIndex
- Y-index at which data needs to added.value
- Value to be added.
-
addData
-
addData
-
addData
-
dataToEmbed
Description copied from class:Chart
Get the data to embed. This is useful only for those special charts that embed data in the chart itself rather than pointing to the dataset. Example:TreeChart
,GaugeChart
etc. If null is returned from this method, no data will be embedded.- Overrides:
dataToEmbed
in classChart
- Returns:
- Data to embed.
-
dataValueIndex
protected int dataValueIndex()Description copied from class:Chart
Get the index to get the real data value of this chart. (In special charts, the actual data value at a data point may at an index different from 0).- Overrides:
dataValueIndex
in classChart
- Returns:
- Data value index.
-
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. -
getVisualMap
-
setVisualMap
-