Android 柱状图MPAndroidChart(适应百分之八十项目需求)

image

官方源码地址:https://github.com/PhilJay/MPAndroidChart

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

总是会被不经意提起的时候,触动那些伤心。越长大越崩溃。越长大越脆弱。

有家的地方,没有工作。有工作的地方,没有家!这就是生活晚安了,那些——想家的

成年人的世界里,永远不要轻易问别人——你怎么了!有太多事,不知该从哪里说起。却已泪流满面

有些委屈,在成年人的规则世界里,无从诉说,无从解释,只能默默地承受。

废话少说上代码,重新开始,从哪里跌倒就要从哪里爬起
艹,还是先看效果吧

image.png
image.png
image.png

第一步: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();

}

}

提示:还有很多属性这里我就不详细的说了,不懂得可以留言

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,784评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,745评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,702评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,229评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,245评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,376评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,798评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,471评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,655评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,485评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,535评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,235评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,793评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,863评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,096评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,654评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,233评论 2 341