Java Code Examples for com.github.mikephil.charting.data.BubbleEntry#getSize()

The following examples show how to use com.github.mikephil.charting.data.BubbleEntry#getSize() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RealmBubbleDataSet.java    From MPAndroidChart-Realm with Apache License 2.0 5 votes vote down vote up
@Override
protected void calcMinMax(BubbleEntry e) {
    super.calcMinMax(e);

    final float size = e.getSize();

    if (size > mMaxSize) {
        mMaxSize = size;
    }
}
 
Example 2
Source File: RealmBubbleDataSet.java    From Stayfit with Apache License 2.0 4 votes vote down vote up
private float largestSize(BubbleEntry entry) {
    return entry.getSize();
}
 
Example 3
Source File: RealmBubbleDataSet.java    From NetKnight with Apache License 2.0 4 votes vote down vote up
private float largestSize(BubbleEntry entry) {
    return entry.getSize();
}