Class BubblePoint

java.lang.Object
org.primefaces.model.charts.data.BubblePoint
All Implemented Interfaces:
Serializable

public class BubblePoint extends Object implements Serializable
Used to set data to Bubble chart component. Bubble chart datasets need to contain a data array of points, each points represented by an object.
See Also:
  • Constructor Details

    • BubblePoint

      public BubblePoint()
    • BubblePoint

      public BubblePoint(Number x, Number y, Number r)
  • Method Details

    • getX

      public Number getX()
      Gets the x axis value
      Returns:
      x axis value
    • setX

      public void setX(Number x)
      Sets the x axis value
      Parameters:
      x - the value of x axis
    • getY

      public Number getY()
      Gets the y axis value
      Returns:
      y axis value
    • setY

      public void setY(Number y)
      Sets the y axis value
      Parameters:
      y - the value of y axis
    • getR

      public Number getR()
      Gets the radius
      Returns:
      radius value
    • setR

      public void setR(Number r)
      Sets the radius
      Parameters:
      r - Bubble radius in pixels (not scaled).