自定义MPAndroidChart水平柱状样式(圆角)

#使用MPAndroidChart实现水平柱状图(圆角)

## 在使用MPAndroidChart组件前,我们必须阅读官方API,看官方给出的Simple使用实例。如果你想实现的图表与官方给出的实例有出入需要修改Chart设定,那需要仔细阅读使用教程。由于图表的构成是多模块的,每个模块涉及属性较多,建议花点时间阅读教程。

## 在我项目中运用MPAndroidChart的地方比较多,大多数官方使用实例是可以满足使用要求的,那在本篇文章里我只对实现水平柱状图作介绍,其他的不作概述。

##### 首先了解一下需求,如下图所示需要实现圆角柱状图。

需求图

##### 根据官方提供的HorizontalBarChart实现效果如下:

官方 HorizontalBarChart  实现图

##### 这里我简单贴一下Activity中实现代码:

```

import android.app.Activity;

import android.graphics.RectF;

import android.os.Bundle;

import android.util.Log;

import android.view.View;

import androidx.annotation.Nullable;

import com.github.mikephil.charting.charts.HorizontalBarChart;

import com.github.mikephil.charting.components.AxisBase;

import com.github.mikephil.charting.components.Legend;

import com.github.mikephil.charting.components.LimitLine;

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.data.Entry;

import com.github.mikephil.charting.formatter.IAxisValueFormatter;

import com.github.mikephil.charting.highlight.Highlight;

import com.github.mikephil.charting.interfaces.datasets.IBarDataSet;

import com.github.mikephil.charting.listener.OnChartValueSelectedListener;

import com.github.mikephil.charting.utils.MPPointF;

import java.util.ArrayList;

import java.util.Random;

public class OrderCountActivity extends Activity implements OnChartValueSelectedListener {

    // 自定义Chatrt图标

    private HorizontalBarChart chart;

    // 测试数据

    private String labelName[] = {"","南京", "常州", "扬州", "无锡", "南通", "淮安", "苏州", "连云港", "盐城", "泰州", "宿迁", "镇江", "徐州"};


    @Override

    protected void onCreate(@Nullable Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_order_count);


        initViews();

    }

    public void initViews() {

        chart = findViewById(R.id.custom_chart);

        chart.setOnChartValueSelectedListener(this);

        chart.setDrawBarShadow(true);

        chart.setDrawValueAboveBar(true);

        chart.setExtraOffsets(0, 10, 0, 10); // 设置饼图的偏移量,类似于内边距 ,设置视图窗口大小

        chart.setDoubleTapToZoomEnabled(false); // 双击不可放大

        chart.getDescription().setEnabled(false); // 不显示描述

        chart.setMaxVisibleValueCount(60); // 最大值

        chart.setPinchZoom(false); // x,y轴方向缩放

        chart.setDrawGridBackground(false);  //网格背景

        chart.animateY(2500); // Y轴 初始化时动画效果

        // 设置x轴

        final XAxis xl = chart.getXAxis();

        xl.setPosition(XAxis.XAxisPosition.BOTTOM); // 设置x轴显示在下方,默认在上方

        xl.setDrawAxisLine(true); //设置为true,则绘制该行旁边的轴线(axis-line)

        xl.setDrawGridLines(true);// 将此设置为true,绘制该轴的网格线

        xl.setAxisMinimum(0.0f); // 设置最小值  不要随便改

        xl.setLabelCount(labelName.length);

        xl.setTextSize(14.0f); // 设置文字大小

        // 设置x轴显示的值的格式

        xl.setValueFormatter(new IAxisValueFormatter() {

            @Override

            public String getFormattedValue(float value, AxisBase axis) {

                if (value - xl.getAxisMinimum()< labelName.length) {

                    return labelName[(int) (value - xl.getAxisMinimum())];

                } else {

                    return "";

                }

            }

        });

        xl.setXOffset(0.0f); // 设置标签对x轴的偏移量,垂直方向

        // 设置y轴,y轴有两条,分别为左和右

        YAxis yr = chart.getAxisRight();

        chart.getAxisLeft().setEnabled(false); // 隐藏右边 的坐标轴

        yr.setDrawAxisLine(false);

        yr.setDrawGridLines(false);

        yr.setTextSize(14.0f);

        // y轴添加限制线

        LimitLine limitLine = new LimitLine(2.0f, "平均值:2.0");

        limitLine.setLabelPosition(LimitLine.LimitLabelPosition.RIGHT_TOP);

        limitLine.setTextSize(12f);

        limitLine.setLineColor(getResources().getColor(R.color.colo_FFA224)); // 线的颜色

        limitLine.setTextColor(getResources().getColor(R.color.colo_FFA224)); // 文字的颜色

        yr.addLimitLine(limitLine);

        yr.setDrawZeroLine(true);

        yr.setYOffset(0.0f);

        Legend legend = chart.getLegend();

        legend.setEnabled(false);// 隐藏图例

        setData(); // 填充数据

    }

    private void setData() {

        float barWidth = 0.5f;

        ArrayList<BarEntry> values_zs = new ArrayList<>();  // 总数

        ArrayList<BarEntry> values_ywc = new ArrayList<>(); // 已完成

        Random random = new Random();

        for (int i = 0; i < labelName.length; i++) {

            if(i==0){

                values_zs.add(new BarEntry(-1 , 0 ));

                values_ywc.add(new BarEntry(-1, 0));

                continue;

            }

            int val = random.nextInt(20);

            float val2 = (float) Math.random()*10;

            values_zs.add(new BarEntry(i , 2*val2));

            values_ywc.add(new BarEntry(i, val2));

        }

        if (chart.getData() != null &&

                chart.getData().getDataSetCount() > 0) {

            BarDataSet dataSetZs = (BarDataSet) chart.getData().getDataSetByIndex(0); // 总数

            BarDataSet dataSetYwc = (BarDataSet) chart.getData().getDataSetByIndex(1); // 已完成数

            dataSetZs.setValues(values_zs);

            dataSetYwc.setValues(values_ywc);

            chart.getData().notifyDataChanged();

            chart.notifyDataSetChanged();

        } else {

            ArrayList<IBarDataSet> dataSets = new ArrayList<>();

            BarDataSet dataSetZs = new BarDataSet(values_zs, "总数");

            dataSetZs.setDrawIcons(false);

            dataSetZs.setDrawValues(false); // 不显示值

            dataSetZs.setColor(getResources().getColor(R.color.colo_EFE8E1)); // 浅灰色

            dataSets.add(dataSetZs);

            BarDataSet dataSetYwc = new BarDataSet(values_ywc, "已完成");

            dataSetYwc.setDrawIcons(false);

            dataSetYwc.setColor(getResources().getColor(R.color.colo_B79C81)); // 浅褐色

            dataSets.add(dataSetYwc);

            BarData data = new BarData(dataSets);

            data.setValueTextSize(10f);

            data.setBarWidth(barWidth);

            chart.setData(data);

        }

        findViewById(R.id.tv_ywcs).setVisibility(View.VISIBLE);

        findViewById(R.id.tv_zs).setVisibility(View.VISIBLE);

    }

    private final RectF mOnValueSelectedRectF = new RectF();

    @Override

    public void onValueSelected(Entry e, Highlight h) {

        if (e == null)

            return;

        RectF bounds = mOnValueSelectedRectF;

        chart.getBarBounds((BarEntry) e, bounds);

        MPPointF position = chart.getPosition(e, chart.getData().getDataSetByIndex(h.getDataSetIndex())

                .getAxisDependency());

        Log.i("bounds", bounds.toString());

        Log.i("position", position.toString());

        MPPointF.recycleInstance(position);

    }

    @Override

    public void onNothingSelected() {

    }

}

```

#####布局文件 activity_order_count.xml:

```

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="@color/colo_F0F0F0"

    android:orientation="vertical">

        <!--  已完成任务数对比-->

        <TextView

            android:id="@+id/title_bottom"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_below="@+id/ll_middle"

            android:layout_margin="15dp"

            android:layout_weight="1"

            android:text="已完成任务数对比"

            android:textColor="@color/black"

            android:textSize="16sp"

            android:textStyle="bold" />

        <RelativeLayout

            android:layout_width="match_parent"

            android:layout_height="match_parent"

            android:layout_below="@+id/title_bottom">

            <TextView

                android:id="@+id/tv_ywcs"

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:gravity="center_vertical"

                android:layout_alignParentTop="true"

                android:layout_alignParentRight="true"

                android:text="已完成"

                android:drawableLeft="@drawable/ic_brown_point"/>

            <TextView

                android:id="@+id/tv_zs"

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:gravity="center_vertical"

                android:layout_alignParentTop="true"

                android:layout_toLeftOf="@+id/tv_ywcs"

                android:text="总数"

                android:layout_marginRight="10dp"

                android:drawableLeft="@drawable/ic_brown_low_point"/>

            <!-- 这是官方的HorizontalBarChart,后面使用自定义chart请替换成CustomHorizontalBarChart -->

            <com.github.mikephil.charting.charts.HorizontalBarChart

                android:id="@+id/custom_chart"

                android:layout_width="match_parent"

                android:layout_height="match_parent"

                android:background="@android:color/white"

                android:layout_below="@+id/tv_ywcs"/>

        </RelativeLayout>

</LinearLayout>

```

#####距离实现圆角柱状图只差一步,自定义水平圆角柱状图,下面直接给出代码吧

```

/**

*  重写HorizontalBarChart,更改其柱状图样式

*/

public class CustomHorizontalBarChart extends HorizontalBarChart {

public CustomHorizontalBarChart(Context context) {

super(context);

    }

public CustomHorizontalBarChart(Context context, AttributeSet attrs) {

super(context, attrs);

    }

public CustomHorizontalBarChart(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

    }

@Override

    protected void init() {

super.init();

        this.mRenderer =new CustomHorizontalBarChartRenderer(this, this.mAnimator, this.mViewPortHandler);

    }

}

```

######最重要的步骤来了,重写器渲染器,覆盖HorizontalBarChartRenderer.java中绘制柱状图的方法。其中drawDataSet是绘制柱状图的方法,drawHighlighted是绘制点击过后高亮柱状图。

```

import com.github.mikephil.charting.highlight.Highlight;

import com.github.mikephil.charting.highlight.Range;

import com.github.mikephil.charting.renderer.HorizontalBarChartRenderer;

import android.graphics.Canvas;

import android.graphics.Path;

import android.graphics.RectF;

import android.util.Log;

import com.github.mikephil.charting.animation.ChartAnimator;

import com.github.mikephil.charting.buffer.BarBuffer;

import com.github.mikephil.charting.data.BarData;

import com.github.mikephil.charting.data.BarEntry;

import com.github.mikephil.charting.interfaces.dataprovider.BarDataProvider;

import com.github.mikephil.charting.interfaces.datasets.IBarDataSet;

import com.github.mikephil.charting.utils.Transformer;

import com.github.mikephil.charting.utils.Utils;

import com.github.mikephil.charting.utils.ViewPortHandler;

/**

* 继承HorizontalBarChartRenderer写一个新的渲染器,调整为水平颜色

*/

public class CustomHorizontalBarChartRenderer extends HorizontalBarChartRenderer {

public CustomHorizontalBarChartRenderer(BarDataProvider chart, ChartAnimator animator, ViewPortHandler viewPortHandler) {

super(chart, animator, viewPortHandler);

    }

private RectFmBarShadowRectBuffer =new RectF();

    @Override

    protected void drawDataSet(Canvas c, IBarDataSet dataSet, int index) {

Transformer trans =mChart.getTransformer(dataSet.getAxisDependency());

        mBarBorderPaint.setColor(dataSet.getBarBorderColor());

        mBarBorderPaint.setStrokeWidth(Utils.convertDpToPixel(dataSet.getBarBorderWidth()));

        final boolean drawBorder = dataSet.getBarBorderWidth() >0.f;

        float phaseX =mAnimator.getPhaseX();

        float phaseY =mAnimator.getPhaseY();

        // draw the bar shadow before the values

        if (mChart.isDrawBarShadowEnabled()) {

mShadowPaint.setColor(dataSet.getBarShadowColor());

            BarData barData =mChart.getBarData();

            final float barWidth = barData.getBarWidth();

            final float barWidthHalf = barWidth /2.0f;

            float x;

            for (int i =0, count = Math.min((int) (Math.ceil((float) (dataSet.getEntryCount()) * phaseX)), dataSet.getEntryCount());

                i < count;

                i++) {

BarEntry e = dataSet.getEntryForIndex(i);

                x = e.getX();

                mBarShadowRectBuffer.top = x - barWidthHalf;

                mBarShadowRectBuffer.bottom = x + barWidthHalf;

                trans.rectValueToPixel(mBarShadowRectBuffer);

                if (!mViewPortHandler.isInBoundsTop(mBarShadowRectBuffer.bottom))

continue;

                if (!mViewPortHandler.isInBoundsBottom(mBarShadowRectBuffer.top))

break;

                mBarShadowRectBuffer.left =mViewPortHandler.contentLeft();

                mBarShadowRectBuffer.right =mViewPortHandler.contentRight();

                float radius = (mBarShadowRectBuffer.bottom -mBarShadowRectBuffer.top) /2;

                // 画半圆+矩形

                RectF rectFTo =new RectF(mBarShadowRectBuffer.right -2 * radius, mBarShadowRectBuffer.top,

                        mBarShadowRectBuffer.right, mBarShadowRectBuffer.bottom);

                Path path =new Path();

                path.arcTo(rectFTo, -90, 180, true);

                if (mBarShadowRectBuffer.right -mBarShadowRectBuffer.left < radius) {

path.lineTo(rectFTo.centerX(), rectFTo.bottom);

                    Path srcPath =new Path();

                    srcPath.addRect(mBarShadowRectBuffer.left, mBarShadowRectBuffer.top, mBarShadowRectBuffer.right, mBarShadowRectBuffer.bottom, Path.Direction.CW);

                    path.op(srcPath, Path.Op.INTERSECT); // 相交部分

                }else {

path.moveTo(rectFTo.centerX(), rectFTo.bottom);

                    path.lineTo(mBarShadowRectBuffer.left, mBarShadowRectBuffer.bottom);

                    path.lineTo(mBarShadowRectBuffer.left, mBarShadowRectBuffer.top);

                    path.lineTo(rectFTo.centerX(), mBarShadowRectBuffer.top);

                }

c.drawPath(path, mShadowPaint);

            }

}

// initialize the buffer

        BarBuffer buffer =mBarBuffers[index];

        buffer.setPhases(phaseX, phaseY);

        buffer.setDataSet(index);

        buffer.setInverted(mChart.isInverted(dataSet.getAxisDependency()));

        buffer.setBarWidth(mChart.getBarData().getBarWidth());

        buffer.feed(dataSet);

        trans.pointValuesToPixel(buffer.buffer);

        final boolean isSingleColor = dataSet.getColors().size() ==1;

        if (isSingleColor) {

mRenderPaint.setColor(dataSet.getColor());

        }

for (int j =0; j < buffer.size(); j +=4) {

if (!mViewPortHandler.isInBoundsTop(buffer.buffer[j +3]))

break;

            if (!mViewPortHandler.isInBoundsBottom(buffer.buffer[j +1]))

continue;

            if (!isSingleColor) {

// Set the color for the currently drawn value. If the index

// is out of bounds, reuse colors.

                mRenderPaint.setColor(dataSet.getColor(j /4));

            }

// 画半圆+矩形

            float barWidthHalf = (buffer.buffer[j +3] - buffer.buffer[j +1]) /2;

            RectF rectFTo =new RectF(buffer.buffer[j +2] -2 * barWidthHalf, buffer.buffer[j +1],

                    buffer.buffer[j +2], buffer.buffer[j +3]);

            Path path =new Path();

            path.arcTo(rectFTo, -90, 180, true);

            if (buffer.buffer[j +2] - buffer.buffer[j] < barWidthHalf) {

path.lineTo(rectFTo.centerX(), rectFTo.bottom); // 封闭半圆

                Path srcPath =new Path();

                srcPath.addRect(buffer.buffer[j], buffer.buffer[j +1], buffer.buffer[j +2], buffer.buffer[j +3], Path.Direction.CW);

                path.op(srcPath, Path.Op.INTERSECT); // 相交部分

            }else {

path.moveTo(rectFTo.centerX(), rectFTo.bottom);

                path.lineTo(buffer.buffer[j], buffer.buffer[j +3]);

                path.lineTo(buffer.buffer[j], buffer.buffer[j +1]);

                path.lineTo(rectFTo.centerX(), buffer.buffer[j +1]);

            }

c.drawPath(path, mRenderPaint);

            if (drawBorder) {

c.drawPath(path, mBarBorderPaint);

            }

}

}

@Override

    public void drawHighlighted(Canvas c, Highlight[] indices) {

BarData barData =mChart.getBarData();

        final float barWidth = barData.getBarWidth();

        final float barWidthHalf = barWidth /2.0f;

        for (Highlight high : indices) {

IBarDataSet set = barData.getDataSetByIndex(high.getDataSetIndex());

            if (set ==null || !set.isHighlightEnabled())

continue;

            BarEntry e = set.getEntryForXValue(high.getX(), high.getY());

            if (!isInBoundsX(e, set))

continue;

            Transformer trans =mChart.getTransformer(set.getAxisDependency());

            mHighlightPaint.setColor(set.getHighLightColor());

            mHighlightPaint.setAlpha(set.getHighLightAlpha());

            boolean isStack = (high.getStackIndex() >=0 && e.isStacked()) ?true :false;

            final float y1;

            final float y2;

            if (isStack) {

if (mChart.isHighlightFullBarEnabled()) {

y1 = e.getPositiveSum();

                    y2 = -e.getNegativeSum();

                }else {

Range range = e.getRanges()[high.getStackIndex()];

                    y1 = range.from;

                    y2 = range.to;

                }

}else {

y1 = e.getY();

                y2 =0.f;

            }

// 画半圆

            float leftTo = y1 -2 * barWidth;

            float rightTo = y1;

            float topTo = e.getX() - barWidthHalf;

            float bottomTo = e.getX() + barWidthHalf;

            RectF rectFTo =new RectF(leftTo, topTo, rightTo, bottomTo);

            trans.rectToPixelPhase(rectFTo, mAnimator.getPhaseY());

            Path path =new Path();

            path.arcTo(rectFTo, -90, 180, true);

            RectF rectF =new RectF(y2, topTo, rightTo, bottomTo);

            trans.rectToPixelPhase(rectF, mAnimator.getPhaseY());

            if (y1 - barWidth <0) {

path.lineTo(rectFTo.centerX(), rectFTo.bottom);

                Path srcPath =new Path();

                srcPath.addRect(rectF.left,rectF.top, rectF.right, rectF.bottom, Path.Direction.CW);

                path.op(srcPath, Path.Op.INTERSECT); // 相交部分

            }else {

path.moveTo(rectFTo.centerX(), rectFTo.bottom);

                path.lineTo(rectF.left, rectFTo.bottom);

                path.lineTo(rectF.left, rectFTo.top);

                path.lineTo(rectFTo.centerX(), rectFTo.top);

            }

c.drawPath(path, mHighlightPaint);

        }

}

}

```

#####最后来看看最终实现效果:


实现图

~~~~~~ 结束,第一次写简书,对简书的格式不熟悉,可能会在代码开头和结尾有“```” ,复制代码时请删除```”。

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

推荐阅读更多精彩内容