Package com.storedobject.chart
Class MarkArea
java.lang.Object
com.storedobject.chart.MarkArea
- All Implemented Interfaces:
ComponentProperty
,HasData
Mark area. Used to define style for one or more individual areas in many charts. use
Chart.getMarkArea(boolean)
to get the MarkArea
of the chart.
Examples: LineChart
, ScatterChart
, PieChart
etc.- Author:
- Syam
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(MarkArea.Block... blocks) Add blocks to this mark area.void
clear()
Clear all blocks.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 ItemStyle
getItemStyle
(boolean create) Get item style.void
remove
(MarkArea.Block... blocks) Remove blocks from this mark area.void
setItemStyle
(ItemStyle itemStyle) Set item style.
-
Constructor Details
-
MarkArea
public MarkArea()
-
-
Method Details
-
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.
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
getItemStyle
Get item style.- Parameters:
create
- If passed true, a new style is created if not exists.- Returns:
- Item style.
-
setItemStyle
-
add
Add blocks to this mark area.- Parameters:
blocks
- Blocks to add.
-
remove
Remove blocks from this mark area.- Parameters:
blocks
- Blocks to remove.
-
clear
public void clear()Clear all blocks.
-