com.odesys.chart.bubblechart
Interface BubbleData

All Superinterfaces:
ChartElement
All Known Implementing Classes:
DefaultBubbleData

public interface BubbleData
extends ChartElement

Provides access to the data of a single bubble of the Bubble chart


Method Summary
 float getValue()
          Gets the value of the bubble.
 float getX()
          Gets the X coordinate of the center of the bubble.
 float getY()
          Gets the Y coordinate of the center of the bubble.
 void setValue(float value)
          Sets the value of the bubble.
 void setX(float x)
          Sets the X coordinate of the center of the bubble.
 void setY(float y)
          Sets the Y coordinate of the center of the bubble.
 
Methods inherited from interface com.odesys.chart.ChartElement
getColor, getLabel, getModel, getSeries, setColor, setLabel
 

Method Detail

getX

public float getX()
Gets the X coordinate of the center of the bubble.

setX

public void setX(float x)
Sets the X coordinate of the center of the bubble.

getY

public float getY()
Gets the Y coordinate of the center of the bubble.

setY

public void setY(float y)
Sets the Y coordinate of the center of the bubble.

setValue

public void setValue(float value)
Sets the value of the bubble.

getValue

public float getValue()
Gets the value of the bubble.