Android 優秀圖標庫MPAndroidChart之柱狀圖(適應百分之八十項目需求)

嗨,你終於來啦 ~ 等你很久啦~ 喜歡的小夥伴 歡迎關注,我會按期分享Android知識點及解析,還會不斷更新的BATJ面試專題,歡迎你們前來探討交流,若有好的文章也歡迎投稿。

前言

在項目當中不少時候要對數據進行分析就要用到圖表,在gitHub上有不少優秀的圖表開源庫,今天給你們分享的就是MPAndroidChart中的柱狀圖。簡單介紹一下MPAndroidChart:他能夠實現圖表的拖動,3D,局部查看,數據動態展現等功能。java

官方源碼地址:github.com/PhilJay/MPA…
android

廢話就很少說啦,先給看你們看看效果圖喲git


操做步驟

第一步:須要將依賴的庫添加到你的項目中

implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
implementation 'com.google.android.material:material:1.0.0'

第二步:xml中

<com.github.mikephil.charting.charts.BarChart
    android:id="@+id/chart1"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    />
複製代碼

第三步:ValueFormatter.java

/** * Class to format all values before they are drawn as labels. */
 public abstract class ValueFormatter implements IAxisValueFormatter, IValueFormatter {

/** * <b>DO NOT USE</b>, only for backwards compatibility and will be removed in future versions. * * @param value the value to be formatted * @param axis the axis the value belongs to * @return formatted string label */
@Override
@Deprecated
public String getFormattedValue(float value, AxisBase axis) {
    return getFormattedValue(value);
}

/** * <b>DO NOT USE</b>, only for backwards compatibility and will be removed in future versions. * @param value the value to be formatted * @param entry the entry the value belongs to - in e.g. BarChart, this is of class BarEntry * @param dataSetIndex the index of the DataSet the entry in focus belongs to * @param viewPortHandler provides information about the current chart state (scale, translation, ...) * @return formatted string label */
@Override
@Deprecated
public String getFormattedValue(float value, Entry entry, int dataSetIndex, ViewPortHandler viewPortHandler) {
    return getFormattedValue(value);
}

/** * Called when drawing any label, used to change numbers into formatted strings. * * @param value float to be formatted * @return formatted string label */
public String getFormattedValue(float value) {
    return String.valueOf(value);
}

/** * Used to draw axis labels, calls {@link #getFormattedValue(float)} by default. * * @param value float to be formatted * @param axis axis being labeled * @return formatted string label */
public String getAxisLabel(float value, AxisBase axis) {
    return getFormattedValue(value);
}

/** * Used to draw bar labels, calls {@link #getFormattedValue(float)} by default. * * @param barEntry bar being labeled * @return formatted string label */
public String getBarLabel(BarEntry barEntry) {
    return getFormattedValue(barEntry.getY());
}

/** * Used to draw stacked bar labels, calls {@link #getFormattedValue(float)} by default. * * @param value current value to be formatted * @param stackedEntry stacked entry being labeled, contains all Y values * @return formatted string label */
public String getBarStackedLabel(float value, BarEntry stackedEntry) {
    return getFormattedValue(value);
}

/** * Used to draw line and scatter labels, calls {@link #getFormattedValue(float)} by default. * * @param entry point being labeled, contains X value * @return formatted string label */
public String getPointLabel(Entry entry) {
    return getFormattedValue(entry.getY());
}

/** * Used to draw pie value labels, calls {@link #getFormattedValue(float)} by default. * * @param value float to be formatted, may have been converted to percentage * @param pieEntry slice being labeled, contains original, non-percentage Y value * @return formatted string label */
public String getPieLabel(float value, PieEntry pieEntry) {
    return getFormattedValue(value);
}

/** * Used to draw radar value labels, calls {@link #getFormattedValue(float)} by default. * * @param radarEntry entry being labeled * @return formatted string label */
public String getRadarLabel(RadarEntry radarEntry) {
    return getFormattedValue(radarEntry.getY());
}

/** * Used to draw bubble size labels, calls {@link #getFormattedValue(float)} by default. * * @param bubbleEntry bubble being labeled, also contains X and Y values * @return formatted string label */
public String getBubbleLabel(BubbleEntry bubbleEntry) {
    return getFormattedValue(bubbleEntry.getSize());
}

/** * Used to draw high labels, calls {@link #getFormattedValue(float)} by default. * * @param candleEntry candlestick being labeled * @return formatted string label */
public String getCandleLabel(CandleEntry candleEntry) {
    return getFormattedValue(candleEntry.getHigh());
}

}
複製代碼

第四步:MyValueFormatter

public class MyValueFormatter extends ValueFormatter{
private final DecimalFormat mFormat;
private String suffix;

public MyValueFormatter(String suffix) {
    mFormat = new DecimalFormat("0000");
    this.suffix = suffix;
}

@Override
public String getFormattedValue(float value) {
    return mFormat.format(value) + suffix;
}

@Override
public String getAxisLabel(float value, AxisBase axis) {
    if (axis instanceof XAxis) {
        return mFormat.format(value);
    } else if (value > 0) {
        return mFormat.format(value) + suffix;
    } else {
        return mFormat.format(value);
    }
}
}
複製代碼

第五步:MainAcyivity

package detongs.hbqianze.him.linechart;
  import android.os.Bundle;
  import android.util.Log;
  import android.view.WindowManager;
  import android.widget.TextView;

  import androidx.appcompat.app.AppCompatActivity;

  import com.github.mikephil.charting.charts.BarChart;
  import com.github.mikephil.charting.components.XAxis;
  import com.github.mikephil.charting.components.YAxis;
  import com.github.mikephil.charting.data.BarData;
  import com.github.mikephil.charting.data.BarDataSet;
  import com.github.mikephil.charting.data.BarEntry;
  import com.github.mikephil.charting.interfaces.datasets.IBarDataSet;
  import  com.github.mikephil.charting.interfaces.datasets.IDataSet;
  import com.github.mikephil.charting.utils.ColorTemplate;

  import java.util.ArrayList;

  import detongs.hbqianze.him.linechart.chart.MyValueFormatter;
  import detongs.hbqianze.him.linechart.chart.ValueFormatter;

  public class MainActivity extends AppCompatActivity {



private BarChart chart;
private TextView te_cache;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_main);


    chart = findViewById(R.id.chart1);
    te_cache = findViewById(R.id.te_cache);


    chart.getDescription().setEnabled(false);

    //設置最大值條目,超出以後不會有值
    chart.setMaxVisibleValueCount(60);

    //分別在x軸和y軸上進行縮放
    chart.setPinchZoom(true);
    //設置剩餘統計圖的陰影
    chart.setDrawBarShadow(false);
    //設置網格佈局
    chart.setDrawGridBackground(true);
    //經過自定義一個x軸標籤來實現2,015 有分割符符bug
    ValueFormatter custom = new MyValueFormatter(" ");
    //獲取x軸線
    XAxis xAxis = chart.getXAxis();

    //設置x軸的顯示位置
    xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
    //設置網格佈局
    xAxis.setDrawGridLines(true);
    //圖表將避免第一個和最後一個標籤條目被減掉在圖表或屏幕的邊緣
    xAxis.setAvoidFirstLastClipping(false);
    //繪製標籤 指x軸上的對應數值 默認true
    xAxis.setDrawLabels(true);
    xAxis.setValueFormatter(custom);
    //縮放後x 軸數據重疊問題
    xAxis.setGranularityEnabled(true);
    //獲取右邊y標籤
    YAxis axisRight = chart.getAxisRight();
    axisRight.setStartAtZero(true);
    //獲取左邊y軸的標籤
    YAxis axisLeft = chart.getAxisLeft();
    //設置Y軸數值 從零開始
    axisLeft.setStartAtZero(true);

    chart.getAxisLeft().setDrawGridLines(false);
    //設置動畫時間
     chart.animateXY(600,600);

     chart.getLegend().setEnabled(true);

    getData();
    //設置柱形統計圖上的值
    chart.getData().setValueTextSize(10);
    for (IDataSet set : chart.getData().getDataSets()){
        set.setDrawValues(!set.isDrawValuesEnabled());
    }



}



public void getData(){
ArrayList<BarEntry> values = new ArrayList<>();
    Float aFloat = Float.valueOf("2015");
    Log.v("xue","aFloat+++++"+aFloat);
    BarEntry barEntry = new BarEntry(aFloat,Float.valueOf("100"));
BarEntry barEntry1 = new BarEntry(Float.valueOf("2016"),Float.valueOf("210"));
BarEntry barEntry2 = new BarEntry(Float.valueOf("2017"),Float.valueOf("300"));
BarEntry barEntry3 = new BarEntry(Float.valueOf("2018"),Float.valueOf("450"));
BarEntry barEntry4 = new BarEntry(Float.valueOf("2019"),Float.valueOf("300"));
    BarEntry barEntry5 = new BarEntry(Float.valueOf("2020"),Float.valueOf("650"));
    BarEntry barEntry6 = new BarEntry(Float.valueOf("2021"),Float.valueOf("740"));
values.add(barEntry);
values.add(barEntry1);
values.add(barEntry2);
values.add(barEntry3);
values.add(barEntry4);
values.add(barEntry5);
    values.add(barEntry6);
BarDataSet set1;

if (chart.getData() != null &&
        chart.getData().getDataSetCount() > 0) {
    set1 = (BarDataSet) chart.getData().getDataSetByIndex(0);
    set1.setValues(values);
    chart.getData().notifyDataChanged();
    chart.notifyDataSetChanged();
} else {
    set1 = new BarDataSet(values, "點折水");
    set1.setColors(ColorTemplate.VORDIPLOM_COLORS);
    set1.setDrawValues(false);

    ArrayList<IBarDataSet> dataSets = new ArrayList<>();
    dataSets.add(set1);

    BarData data = new BarData(dataSets);
    chart.setData(data);

    chart.setFitBars(true);
}
    //繪製圖表
chart.invalidate();

}

}
複製代碼

最後

好啦,文章寫到這裏就結束了,若是你以爲文章寫得不錯就給個讚唄?若是還有想了解MPAndroidChart其餘屬性的小夥伴也能夠給我留言哦。github

但願讀到這的您能分享和關注一下我~之後還會更新技術乾貨,謝謝您的支持!面試

點贊+關注,第一時間獲取最新知識點架構

Android架構師之路很漫長,一塊兒共勉吧!app

相關文章
相關標籤/搜索