Package org.eclipse.birt.chart.render
Interface IActionRenderer
-
- All Known Implementing Classes:
ActionRendererAdapter
public interface IActionRenderer
This interface defines the methods to process the trigger actions during rendering.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
AXIS_LABEL
static java.lang.String
LEGEND_ITEM_DATA
static java.lang.String
LEGEND_ITEM_TEXT
Expression evaluated in Legend trigger action.static java.lang.String
LEGEND_ITEM_VALUE
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
processAction(Action action, StructureSource source)
Deprecated.void
processAction(Action action, StructureSource source, RunTimeContext rtc)
Process the action with given source object.
-
-
-
Field Detail
-
LEGEND_ITEM_DATA
static final java.lang.String LEGEND_ITEM_DATA
- See Also:
- Constant Field Values
-
LEGEND_ITEM_TEXT
static final java.lang.String LEGEND_ITEM_TEXT
Expression evaluated in Legend trigger action.- See Also:
- Constant Field Values
-
LEGEND_ITEM_VALUE
static final java.lang.String LEGEND_ITEM_VALUE
- See Also:
- Constant Field Values
-
AXIS_LABEL
static final java.lang.String AXIS_LABEL
- See Also:
- Constant Field Values
-
-
Method Detail
-
processAction
void processAction(Action action, StructureSource source, RunTimeContext rtc)
Process the action with given source object.- Parameters:
action
- Action Object.source
- Source Objectrtc
- chart runtime context
-
processAction
@Deprecated void processAction(Action action, StructureSource source)
Deprecated.Process the action with given source object.- Parameters:
action
- Action Object.source
- Source Object
-
-