Android折线图,曲线图,柱状图,饼状图

ChartView

ChartView是一个Android开源图表库。目前仅支持折线图,曲线图,柱状图,饼状图,以及折线图和曲线图点击之后的状态变化,可以选择是画一个图片还是一个背景框。

Screens

折线图和曲线图:

chartview.gif

饼状图有内圆:

piechart_inside.gif

饼状图没有内圆:

piechart.gif

Usage

Gradle

  • Step 1. Add LineChartView
    dependencies {
           compile 'com.veken:chart_view:1.0.2'
    }

折线图

XML

  <com.veken.linecharviewmodule.LineChartView
            android:id="@+id/chart_view"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            app:showPicResource="@mipmap/ic_launcher"
            app:defaultStrokeWidth="0.5dp"
            app:pointClickRadius="3dp"
            app:defaultTextSize="16sp"
            app:pointDefaultRadius="2dp"
            app:isNeedBg="true"
            app:clickable="true"
            app:startColor="@color/startColor"
            app:endColor="@color/endColor" />

折线图自定义属性

attrs description
showPicResource 点击之后显示的图片资源
defaultTextSize 默认文字大小
yLableTextColor Y轴lable文字颜色
xLableTextColor X轴Lable文字颜色
defaultColor 默认颜色
axisColor 坐标轴颜色
defaultStrokeWidth 默认画笔的StrokeWidth
axisMarginHeight X轴下的文字和X轴之间的间隔高度
yLableText Y轴的文字描述
isNeedBg 是否需要背景(默认为不需要=false)
isNeedDrawConnectYDataLine 是否需要点和Y轴之间的连接线(默认为不需要=false)
dottedLineWidth 连接线为虚线时的宽度
connectLineColor 连接线的颜色
pointMarginHeight 点和文字之间的间隔高度
pointDefaultRadius 点默认半径
pointClickRadius 点击之后圆的半径
textAndClickBgMargin 点击之后文字和点击背景上下左右的间隔
clickBgColor 点击之后的背景颜色
startColor 背景颜色的起始色
endColor 背景颜色的结束色
clickable 是否可以点击

Java

LineChartView lineChartView = view.findViewById(R.id.line_chart_view);
lineChartView.setyLableText("折线图");
//设置点击背景(可以为图片,也可以为一个颜色背景,大小根据textAndClickBgMargin设置)
lineChartView.setDrawBgType(DrawBgType.DrawBitmap);
//设置图片资源
lineChartView.setShowPicResource(R.mipmap.click_icon);
//连接线为虚线(也可以为实现)
lineChartView.setDrawConnectLineType(DrawConnectLineType.DrawDottedLine);
lineChartView.setClickable(true);
//是否需要画连接线
lineChartView.setNeedDrawConnectYDataLine(true);
//连接线的颜色
lineChartView.setConnectLineColor(getResources().getColor(R.color.default_color));
//是否需要背景
lineChartView.setNeedBg(true);
//画曲线图(也可以为折线图)
lineChartView.setDrawLineType(DrawLineType.Draw_Curve);

Data

private ArrayList<ChartBean> lineChartBeanList;
if(lineChartBeanList ==null){
    lineChartBeanList = new ArrayList<>();
}
lineChartView.setDefaultTextSize(24);
Random random = new Random();
for(int i=0;i<7;i++){
    ChartBean lineChartBean = new ChartBean();
    lineChartBean.setValue(String.valueOf(random.nextInt(10000)));
    lineChartBean.setDate(String.valueOf(i));
    lineChartBeanList.add(lineChartBean);
}
lineChartView.setData(lineChartBeanList);
}

柱状图

XML

  <com.veken.chartview.view.BarChartView
        android:id="@+id/bar_chart_view"
        android:layout_width="match_parent"
        android:layout_height="300dp"/>

柱状图自定义属性

attrs description
axisXItemWidth 每一个Item的宽度
axisXItemMargin Item之间的间隔
isNeedDrawYScale 是否需要画Y轴的刻度
bgColor 柱状图背景颜色

其他同折线图

Java

private BarChartView barChartView;
barChartView = view.findViewById(R.id.bar_chart_view);
//是否需要柱状图的背景
barChartView.setNeedBg(true);
//Y轴文字
barChartView.setyLableText("柱状图");
//是否需要连接线
barChartView.setNeedDrawConnectYDataLine(true);
//是否需要画Y轴刻度
barChartView.setNeedDrawYScale(true);
//连接线的样式为虚线(也可以为直线)
barChartView.setDrawConnectLineType(DrawConnectLineType.DrawDottedLine);

Data

private ArrayList<ChartBean> barChartBeanList;
if(barChartBeanList == null){
    barChartBeanList = new ArrayList<>();
}
Random random = new Random();
for (int i = 0; i < 7; i++) {
    ChartBean bean = new ChartBean();
    bean.setDate(i+"");
    bean.setValue(100*random.nextInt(10)+"");
    barChartBeanList.add(bean);
}
barChartView.setData(barChartBeanList);

饼状图

XML

  <com.veken.chartview.view.PieChartView
        android:id="@+id/piechart_view"
        android:layout_width="200dp"
        android:layout_height="200dp"
        app:insideText="Hello"
        app:insideTextColor="@color/default_color"
        app:insideRadiusPercent="0.5"/>

饼状图自定义属性

attrs description
textColor 百分比文字颜色
textOutCircleMargin 文字和圆之间的间距
isNeedInside 是否需要内圆
insideText 内圆显示的文字
insideBgColor 内圆背景颜色
insideTextSize 内圆文字大小
insideTextColor 内圆文字颜色
insideRadiusPercent 内圆半径占外圆半径的大小,默认(0.5)

Java

private PieChartView pieChartView;
pieChartView = view.findViewById(R.id.piechart_view);
//内圆中间文字
pieChartView.setInsideText("Hello");
//是否需要加载动画
pieChartView.setIsNeedAnimation(true,5000);
//是否需要背景
pieChartView.setNeedInside(false);

Data

private List<PieChartBean> mList;
if(mList==null){
    mList = new ArrayList<>();
}
//各个扇形的背景颜色
int[] colors = new int[]{getResources().getColor(R.color.colorAccent),
    getResources().getColor(R.color.default_color),
    getResources().getColor(R.color.colorPrimary),
    getResources().getColor(R.color.endColor)};
Random random = new Random();
for(int i = 0;i<4;i++){
    PieChartBean pieChartBean = new PieChartBean();
    pieChartBean.setValue(random.nextInt(10)+i);
    pieChartBean.setColor(colors[i]);
    mList.add(pieChartBean);
}
pieChartView.setData(mList);

License

Copyright (C) 2018 Veken

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About Me

github地址:https://github.com/Veken/LineChartView

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