Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.7.2)

E12063-10


oracle.adf.view.faces.bi.component.graph
Class UISparkItem

java.lang.Object
  extended by javax.faces.component.UIComponent
      extended by org.apache.myfaces.trinidad.component.UIXComponent
          extended by org.apache.myfaces.trinidad.component.UIXComponentBase
              extended by oracle.adf.view.faces.bi.component.graph.UISparkItem

All Implemented Interfaces:
javax.faces.component.StateHolder

public class UISparkItem
extends org.apache.myfaces.trinidad.component.UIXComponentBase

Defines values for a spark chart.

Since:
release specific (what release of product did this appear in)

Field Summary
static org.apache.myfaces.trinidad.bean.PropertyKey COLOR_KEY
           
static java.lang.String COMPONENT_FAMILY
           
static java.lang.String COMPONENT_TYPE
           
static org.apache.myfaces.trinidad.bean.PropertyKey DATE_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey FLOAT_VALUE_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey MARKER_DISPLAYED_KEY
           
static org.apache.myfaces.trinidad.bean.FacesBean.Type TYPE
           
static org.apache.myfaces.trinidad.bean.PropertyKey VALUE_KEY
           

 

Fields inherited from class org.apache.myfaces.trinidad.component.UIXComponentBase
BINDING_KEY, ID_KEY, RENDERED_KEY, RENDERER_TYPE_KEY, TRANSIENT_KEY

 

Fields inherited from class javax.faces.component.UIComponent
bindings

 

Constructor Summary
UISparkItem()
           

 

Method Summary
protected  org.apache.myfaces.trinidad.bean.FacesBean.Type getBeanType()
           
 java.awt.Color getColor()
          Returns the color of the bar or data point.
 java.util.Date getDate()
          Returns the date for this data item if the sparkchart contains time data.
 java.lang.String getFamily()
           
 java.lang.Object getFloatValue()
          Returns the float value for this data item in a floating bar chart.
 java.lang.String getRendererType()
           
 java.lang.Object getValue()
          Returns the value for this data item.
 boolean isMarkerDisplayed()
          Returns true if a marker should be displayed for this data item.
 void setColor(java.awt.Color color)
          Specifies the color of the bar or data point.
 void setDate(java.util.Date date)
          Specifies the date for this data item if the sparkchart contains irregularly spaced time data.
 void setFloatValue(java.lang.Object value)
          Specifies the float value for this data item in a floating bar chart.
 void setMarkerDisplayed(boolean markerDisplayed)
          Specifies whether a marker should be displayed for this data item.
 void setValue(java.lang.Object value)
          Specifies the value for this data item.

 

Methods inherited from class org.apache.myfaces.trinidad.component.UIXComponentBase
adaptMethodBinding, addAttributeChange, addAttributeChangeListener, addComponentChange, addComponentChange, addComponentChangeFilter, addFacesListener, broadcast, broadcastToMethodBinding, broadcastToMethodExpression, createFacesBean, decode, decodeChildren, decodeChildrenImpl, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributeChangeListener, getAttributeChangeListeners, getAttributes, getBooleanProperty, getChildCount, getChildren, getClientId, getComponentChangeFilters, getContainerClientId, getFacesBean, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacetNames, getFacets, getFacetsAndChildren, getId, getIntProperty, getLifecycleRenderer, getParent, getProperty, getPropertyKey, getRenderedFacetsAndChildren, getRenderer, getRendersChildren, getValueBinding, getValueExpression, invokeOnChildrenComponents, invokeOnComponent, invokeOnNamingContainerComponent, isRendered, isTransient, markInitialState, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeAttributeChangeListener, removeComponentChangeFilter, removeFacesListener, restoreState, satisfiesPartialTrigger, saveState, setAttributeChangeListener, setAttributeChangeListener, setBooleanProperty, setId, setIntProperty, setParent, setProperty, setRendered, setRendererType, setTransient, setValueBinding, setValueExpression, toString, updateChildren, updateChildrenImpl, validateChildren, validateChildrenImpl

 

Methods inherited from class org.apache.myfaces.trinidad.component.UIXComponent
addPartialTarget, defaultGetRenderedFacetsAndChildren, encodeFlattenedChild, encodeFlattenedChildren, getLogicalParent, getLogicalParent, isVisitable, partialEncodeVisit, processFlattenedChildren, processFlattenedChildren, processFlattenedChildren, processFlattenedChildren, setPartialTarget, setUpEncodingContext, setupVisitingContext, tearDownEncodingContext, tearDownVisitingContext, visitTree, visitTree

 

Methods inherited from class javax.faces.component.UIComponent
encodeAll, getContainerClientId

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Field Detail

COMPONENT_FAMILY

public static final java.lang.String COMPONENT_FAMILY
See Also:
Constant Field Values

COMPONENT_TYPE

public static final java.lang.String COMPONENT_TYPE
See Also:
Constant Field Values

TYPE

public static final org.apache.myfaces.trinidad.bean.FacesBean.Type TYPE

VALUE_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey VALUE_KEY

FLOAT_VALUE_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey FLOAT_VALUE_KEY

DATE_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey DATE_KEY

COLOR_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey COLOR_KEY

MARKER_DISPLAYED_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey MARKER_DISPLAYED_KEY

Constructor Detail

UISparkItem

public UISparkItem()

Method Detail

getFamily

public java.lang.String getFamily()
Specified by:
getFamily in class org.apache.myfaces.trinidad.component.UIXComponentBase

getRendererType

public java.lang.String getRendererType()
Overrides:
getRendererType in class org.apache.myfaces.trinidad.component.UIXComponentBase

setValue

public void setValue(java.lang.Object value)
Specifies the value for this data item.
Parameters:
value -

getValue

public java.lang.Object getValue()
Returns the value for this data item.
Returns:

setFloatValue

public void setFloatValue(java.lang.Object value)
Specifies the float value for this data item in a floating bar chart.
Parameters:
value -

getFloatValue

public java.lang.Object getFloatValue()
Returns the float value for this data item in a floating bar chart.
Returns:

setDate

public void setDate(java.util.Date date)
Specifies the date for this data item if the sparkchart contains irregularly spaced time data. Note that the date should not be specified if the intervals are evenly spaced.
Parameters:
date -

getDate

public java.util.Date getDate()
Returns the date for this data item if the sparkchart contains time data.
Returns:

getColor

public final java.awt.Color getColor()
Returns the color of the bar or data point. For line and area chart types, markerDisplayed must be enabled to make the data items visible.

setColor

public final void setColor(java.awt.Color color)
Specifies the color of the bar or data point. For line and area chart types, markerDisplayed must be enabled to make the data items visible.

isMarkerDisplayed

public final boolean isMarkerDisplayed()
Returns true if a marker should be displayed for this data item.

setMarkerDisplayed

public final void setMarkerDisplayed(boolean markerDisplayed)
Specifies whether a marker should be displayed for this data item.

getBeanType

protected org.apache.myfaces.trinidad.bean.FacesBean.Type getBeanType()
Overrides:
getBeanType in class org.apache.myfaces.trinidad.component.UIXComponentBase

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.7.2)

E12063-10


Copyright © 1997, 2013, Oracle. All rights reserved.