12345678910111213141516171819202122232425262728293031323334 |
- package com.github.mikephil.charting.data;
- import com.github.mikephil.charting.interfaces.datasets.IBubbleDataSet;
- import java.util.List;
- public class BubbleData extends BarLineScatterCandleBubbleData<IBubbleDataSet> {
- public BubbleData() {
- super();
- }
- public BubbleData(IBubbleDataSet... dataSets) {
- super(dataSets);
- }
- public BubbleData(List<IBubbleDataSet> dataSets) {
- super(dataSets);
- }
- /**
- * Sets the width of the circle that surrounds the bubble when highlighted
- * for all DataSet objects this data object contains, in dp.
- *
- * @param width
- */
- public void setHighlightCircleWidth(float width) {
- for (IBubbleDataSet set : mDataSets) {
- set.setHighlightCircleWidth(width);
- }
- }
- }
|