1 package com.github.mikephil.charting.interfaces.datasets; 2 3 import com.github.mikephil.charting.data.BubbleEntry; 4 5 /** 6 * Created by philipp on 21/10/15. 7 */ 8 public interface IBubbleDataSet extends IBarLineScatterCandleBubbleDataSet<BubbleEntry> { 9 10 /** 11 * Sets the width of the circle that surrounds the bubble when highlighted, 12 * in dp. 13 * 14 * @param width 15 */ setHighlightCircleWidth(float width)16 void setHighlightCircleWidth(float width); 17 getMaxSize()18 float getMaxSize(); 19 isNormalizeSizeEnabled()20 boolean isNormalizeSizeEnabled(); 21 22 /** 23 * Returns the width of the highlight-circle that surrounds the bubble 24 * @return 25 */ getHighlightCircleWidth()26 float getHighlightCircleWidth(); 27 } 28