<dvt:shapeAttributes>

shapeAttributes shape attributes


Specifies interactivity properties on subcomponents of a ADF Data Visualization component.

Relationship with other tags

The shapeAttributes tag is a child of the shapeAttributesSet tag.

The shapeAttributes tag has no child tags.

Example

The following example shows XML for shapeAttributes tags associated with the gauge indicator and the gauge metric label.


<dvt:gauge >
<dvt:shapeAttributesSet>
<dvt:shapeAttributes component="INDICATOR" clickable="true"
clickListener="#{sampleGauge.processClick}" alt="#{sampleGauge.getALT}"/>
<dvt:shapeAttributes component="METRICLABEL" clickable="true"
clickListener="#{sampleGauge.processClick}" alt="#{sampleGauge.getALT}"/>
</dvt:shapeAttributesSet>
</dvt:gauge>


Attributes

Name Type Supports EL? Description
id java.lang.String no Specifies the identifier for the component
component java.lang.String no
clickListener java.lang.String no Refers to a backing bean method that takes a ClickEvent as an argument.
clickAction java.lang.String no A reference to backing bean action method that will be called when a graph or gauge component is clicked, or the static outcome of the action.
clickable java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns a boolean value indicating whether a ClickEvent should be fired when this subcomponent is clicked. This can also be a static value "true" or "false".
alt java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String. This String is set as the alt text of the component, and will be displayed as a tooltip when a user hovers over the component.
onClick java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String (javascript handler).
href java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns value of HREF HTML attribute. This creates a link to the href value on the component.
tabindex java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns the value of the TABINDEX HTML attribute.
nohref java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns boolean indicating if NOHREF should be renderered.
target java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns the value of the TARGET HTML attribute.
title java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns value of TITLE HTML attribute.
onFocus java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String (javascript handler).
onBlur java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onKeyPress java.lang.String no A reference to a method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onKeyDown java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onKeyUp java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onMouseMove java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onMouseOver java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler). Specifies the action that occurs when the mouse is over the component.
onMouseOut java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onDblClick java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler). Specifies the action that occurs when the component is double clicked.
onMouseDown java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).
onMouseUp java.lang.String no A reference to a backing bean method that takes oracle.dss.dataView.ComponentHandle and returns String(javascript handler).