Package 

Class Entry

  • All Implemented Interfaces:
    android.os.Parcelable , java.io.Serializable

    
    public class Entry
    extends BaseEntry implements Parcelable, Serializable
                        

    Class representing one entry in the chart. Might contain multiple values. Might only contain a single value depending on the used constructor.

    • Constructor Detail

      • Entry

        Entry()
      • Entry

        Entry(Float x, Float y)
        A Entry represents one single entry in the chart.
        Parameters:
        x - the x value
        y - the y value (the actual value of the entry)
      • Entry

        Entry(Float x, Float y, Object data)
        A Entry represents one single entry in the chart.
        Parameters:
        x - the x value
        y - the y value (the actual value of the entry)
        data - Spot for additional data this Entry represents.
      • Entry

        Entry(Float x, Float y, Drawable icon)
        A Entry represents one single entry in the chart.
        Parameters:
        x - the x value
        y - the y value (the actual value of the entry)
        icon - icon image
      • Entry

        Entry(Float x, Float y, Drawable icon, Object data)
        A Entry represents one single entry in the chart.
        Parameters:
        x - the x value
        y - the y value (the actual value of the entry)
        icon - icon image
        data - Spot for additional data this Entry represents.