/
NikolayIvkin
/
MPAndroidChart1
Обзор
Документация
Войти
/
NikolayIvkin
/
MPAndroidChart1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MPChartLib/src/main/java/com/github/mikephil/charting/data/BubbleData.java
33 строки
802 B
Daniel Cohen Gindi
Reversed "array access optimization"
09 авг 2016, 15:34
09 авг 2016, 15:34
e841b69
Код
Авторство
О чём код?
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); } } }