/
NikolayIvkin
/
MPAndroidChart1
Обзор
Документация
Войти
/
NikolayIvkin
/
MPAndroidChart1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MPChartLib/src/main/java/com/github/mikephil/charting/charts/BubbleChart.java
42 строки
1 KB
Philipp Jahoda
Import cleanup
03 июл 2016, 21:38
03 июл 2016, 21:38
16738ef
Код
Авторство
О чём код?
package com.github.mikephil.charting.charts; import android.content.Context; import android.util.AttributeSet; import com.github.mikephil.charting.data.BubbleData; import com.github.mikephil.charting.interfaces.dataprovider.BubbleDataProvider; import com.github.mikephil.charting.renderer.BubbleChartRenderer; /** * The BubbleChart. Draws bubbles. Bubble chart implementation: Copyright 2015 * Pierre-Marc Airoldi Licensed under Apache License 2.0. In the BubbleChart, it * is the area of the bubble, not the radius or diameter of the bubble that * conveys the data. * * @author Philipp Jahoda */ public class BubbleChart extends BarLineChartBase<BubbleData> implements BubbleDataProvider { public BubbleChart(Context context) { super(context); } public BubbleChart(Context context, AttributeSet attrs) { super(context, attrs); } public BubbleChart(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override protected void init() { super.init(); mRenderer = new BubbleChartRenderer(this, mAnimator, mViewPortHandler); } public BubbleData getBubbleData() { return mData; } }