Package com.storedobject.chart
Interface ComponentGroup
- All Known Implementing Classes:
AbstractGanttChart
,ActivityChart
,GanttChart
,XRangeChart
public interface ComponentGroup
Representation of a group of
Component
s put together. ComponentGroup
s can be added to SOChart
using SOChart.add(ComponentGroup...)
. This class is typically used to assemble complex custom charts that
require more than one Component
s and Chart
instances as their internal parts.
(For example: GanttChart
).- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add parts of this group toSOChart
.void
removeParts
(SOChart soChart) Remove parts of this group fromSOChart
.default void
validate()
This method is invoked before theaddParts(SOChart)
to verify that theComponentGroup
is valid.
-
Method Details
-
addParts
-
removeParts
-
validate
This method is invoked before theaddParts(SOChart)
to verify that theComponentGroup
is valid.- Throws:
ChartException
- Throws when in invalid state.
-