LineChartView(折线图,动态折线图)静态、动态波形绘制

LineChartView-Android

LineChartView(折线图,动态折线图)静态波形绘制View,LiveLineChartView(实时折线图)动态实时波形绘制View,简单易用

Demo效果图

Screen_recording_20231022_211847 00_00_00-00_00_30.gif

使用

  • 添加gradle依赖
//Add it in your root build.gradle at the end of repositories:
 allprojects {
repositories {
   ...
      maven { url 'https://jitpack.io' }
   }
 }
 
 //Add it in your app build.gradle
 dependencies {
     implementation 'com.github.zhzc0x:linechart-android:1.0.5'
 } 
  • 布局文件中声明(更多属性说明详见 #自定义属性说明)
//静态波形LineChartView
<com.zhzc0x.chart.LineChartView
    android:id="@+id/lineChartView"
    android:layout_width="match_parent"
    android:layout_height="120dp"
    android:layout_gravity="start"
    android:layout_marginTop="12dp"
    app:axisArrowHeight="4dp"
    app:axisArrowWidth="7dp"
    app:lineChartBgColor="#f1f1f1"
    app:drawCurve="false"
    app:limitLineWidth="1dp"
    app:lineChartColor="#16422C"
    app:lineChartPaddingStart="42dp"
    app:lineChartPaddingBottom="20dp"
    app:lineChartWidth="2dp"
    app:showAxisArrow="true"
    app:showLineChartAnim="true"
    app:showLineChartPoint="false"
    app:showPointFloatBox="true"
    app:showXAxis="true"
    app:showXScaleLine="true"
    app:showXText="true"
    app:showYAxis="true"
    app:showYScaleLine="true"
    app:showYText="true"
    app:yTextColor="#16422C"
    app:yTextAlign="center"
    app:yTextSize="10sp"
    app:pointXStart="0dp"
    app:pointXEnd="0dp"/>

//动态实时波形LiveLineChartView
<com.zhzc0x.chart.LiveLineChartView
        android:id="@+id/liveLineChartView"
        android:layout_width="match_parent"
        android:layout_height="120dp"
        android:layout_marginTop="12dp"
        app:lineChartBgColor="#f1f1f1"
        app:lineChartPaddingStart="50dp"
        app:pointSpace="2dp"
        app:limitLineCount="3"/>

  • Api说明
class LineChartView {
    ......
    
    /** 设置限制线 */
    fun setLimitArray(limitArray: List<Float>)

    /**
     * 设置是否绘制曲线
     * @see R.attr.drawCurve
     * */
    fun setDrawCurve(drawCurve: Boolean)

    /**
     * 设置是否显示折线点
     * @see R.attr.showLineChartPoint
     * */
    fun setLineChartPoint(show: Boolean)

    /**
     * 设置显示折线动画
     * @see R.attr.showLineChartAnim
     * */
    fun showLineChartAnim()

    /**
     * 设置显示指定折线点信息list
     * 设置后showLineChartPoint和showPointFloatBox属性失效,设置null后恢复
     *
     * */
    fun setShowPoints(showPointList: List<ShowPointInfo>?)

    /**
     * 设置折线点绘制开始和结束的位置
     * @see R.attr.pointXStart = startDp
     * @see R.attr.pointXEnd = endDp
     *
     * */
    fun setPointXInit(startDp: Int, endDp: Int)
    
    /**
     * 设置折线数据
     *
     * @param pointList 点的集合
     * @param xAxisList X轴数据集合
     * @param yAxisList Y轴数据集合
     * @param pointSpace 点的间距
     *
     * */
    @JvmOverloads
    fun setData(pointList: List<PointInfo>, xAxisList: List<AxisInfo>? = null, yAxisList: List<AxisInfo>,                          pointSpace: Float = 0f)
    
    ......
}

class LiveLineChartView {
    ......
    
    /** 往当前屏幕添加折线点 */
    fun addPoint(point: Float)

    /**
     * 设置自动缩放Y轴最大最小值间隔,默认绘制一屏幕点的时间,根据addPoint()的频率计算
     *  @param multipleTime: 绘制一屏幕点的时间倍数
     *
     * */
    fun setAutoZoomInterval(multipleTime: Float)
    
    /** 清空当前屏幕所有的折线点 */
    fun reset()

    /**
     * 设置是否绘制曲线
     * @see R.attr.drawCurve
     * */
    fun setDrawCurve(drawCurve: Boolean)

    /**
     * 设置折线点间距,距离越大,折线移动速度越快,反之越小,单位:dp
     * @see R.attr.pointSpace
     * */
    fun setPointSpace(pointSpaceDp: Float)

    /** 设置自动缩放Y轴最大值 */
    fun setAutoZoomYMax(autoZoomYMax: Boolean)

    /**
     * 设置折线数据
     *
     * @param yAxisList Y轴数据集合
     * @param autoZoomYMax 自动缩放Y轴最大值
     *
     * */
    @JvmOverloads
    fun setData(yAxisList: List<AxisInfo>, autoZoomYMax: Boolean = false, yAxisUnit: String = "")
    
    ......
}

自定义属性说明

<declare-styleable name="LineChartView">
        <!-- 是否显示X轴 -->
        <attr name="showXAxis" format="boolean" />
        <!-- X轴颜色 -->
        <attr name="xAxisColor" format="reference|color" />
        <!-- X轴线宽 -->
        <attr name="xAxisWidth" format="dimension" />
        <!-- 是否显示X轴文字 -->
        <attr name="showXText" format="boolean" />
        <!-- X轴文字颜色 -->
        <attr name="xTextColor" format="reference|color" />
        <!-- X轴文字尺寸 -->
        <attr name="xTextSize" format="dimension" />
        <!-- 是否显示X轴刻度线 -->
        <attr name="showXScaleLine" format="boolean" />
        <!-- X轴刻度线颜色 -->
        <attr name="xScaleLineColor" format="reference|color" />
        <!-- X轴刻度线线宽 -->
        <attr name="xScaleLineWidth" format="dimension" />
        <!-- X轴刻度线长度 -->
        <attr name="xScaleLineLength" format="dimension" />

        <!-- 是否显示Y轴 -->
        <attr name="showYAxis" />
        <!-- Y轴颜色 -->
        <attr name="yAxisColor" />
        <!-- Y轴线宽 -->
        <attr name="yAxisWidth" />
        <!-- 是否显示Y轴文字 -->
        <attr name="showYText" />
        <!-- Y轴文字颜色 -->
        <attr name="yTextColor" />
        <!-- Y轴文字尺寸 -->
        <attr name="yTextSize" />
        <!-- Y轴文字位置 -->
        <attr name="yTextAlign" />
        <!-- 是否显示Y轴刻度线 -->
        <attr name="showYScaleLine" />
        <!-- Y轴刻度线颜色 -->
        <attr name="yScaleLineColor" />
        <!-- Y轴刻度线线宽 -->
        <attr name="yScaleLineWidth" />
        <!-- Y轴刻度线长度 -->
        <attr name="yScaleLineLength" />

        <!-- 是否显示XY轴箭头 -->
        <attr name="showAxisArrow" format="boolean" />
        <attr name="axisArrowWidth" format="dimension" />
        <attr name="axisArrowHeight" format="dimension" />
        <attr name="axisArrowColor" format="reference|color" />

        <attr name="limitLineColor" />
        <attr name="limitLineWidth" />
        <attr name="limitLineLength" />
        <attr name="limitLineSpace" />

        <!-- 折线宽度 -->
        <attr name="lineChartWidth" />
        <!-- 折线颜色 -->
        <attr name="lineChartColor" />
        <!-- 折线区域距离上边的距离 -->
        <attr name="lineChartPaddingTop" format="dimension" />
        <!-- 折线区域距离下边的距离 -->
        <attr name="lineChartPaddingBottom" format="dimension" />
        <!-- 折线区域距离左边的距离 -->
        <attr name="lineChartPaddingStart" />
        <!-- 背景颜色 -->
        <attr name="lineChartBgColor" />
        <!-- 绘制曲线 -->
        <attr name="drawCurve" />
        <!-- 绘制动画折线 -->
        <attr name="showLineChartAnim" format="boolean" />

        <!-- 是否显示折线点 -->
        <attr name="showLineChartPoint" format="boolean" />
        <!-- 折线点半径 -->
        <attr name="pointRadius" format="dimension" />
        <!-- 折线点颜色 -->
        <attr name="pointColor" format="reference|color" />
        <!-- 折线点描边宽 -->
        <attr name="pointStrokeWidth" format="dimension" />
        <!-- 折线点描边颜色 -->
        <attr name="pointStrokeColor" format="reference|color" />
        <!-- 折线点选中半径 -->
        <attr name="pointSelectedRadius" format="dimension" />
        <!-- 折线点选中颜色 -->
        <attr name="pointSelectedColor" format="reference|color" />
        <!-- 折线点选中描边宽 -->
        <attr name="pointSelectedStrokeWidth" format="dimension" />
        <!-- 折线点选中描边颜色 -->
        <attr name="pointSelectedStrokeColor" format="reference|color" />
        <!-- 折线点选中外描边宽度 -->
        <attr name="pointSelectedOutStrokeWidth" format="dimension" />
        <!-- 折线点选中外描边颜色 -->
        <attr name="pointSelectedOutStrokeColor" format="reference|color" />
        <!-- 折线点开始绘制的位置 -->
        <attr name="pointXStart" format="dimension" />
        <!-- 折线点结束绘制的位置 -->
        <attr name="pointXEnd" format="dimension" />

        <!-- 是否显示折线点悬浮框 -->
        <attr name="showPointFloatBox" format="boolean" />
        <!-- 悬浮框颜色 -->
        <attr name="floatBoxColor" format="reference|color" />
        <!-- 悬浮框文本颜色 -->
        <attr name="floatBoxTextColor" format="reference|color" />
        <!-- 悬浮框文本尺寸 -->
        <attr name="floatBoxTextSize" format="dimension" />
        <!-- 悬浮框边距离文本的距离 -->
        <attr name="floatBoxPadding" format="dimension" />
    </declare-styleable>

    <declare-styleable name="LiveLineChartView">
        <!-- 是否显示Y轴 -->
        <attr name="showYAxis" />
        <!-- Y轴颜色 -->
        <attr name="yAxisColor"/>
        <!-- Y轴线宽 -->
        <attr name="yAxisWidth"/>
        <!-- 是否显示Y轴文字 -->
        <attr name="showYText"/>
        <!-- Y轴文字颜色 -->
        <attr name="yTextColor"/>
        <!-- Y轴文字尺寸 -->
        <attr name="yTextSize"/>
        <!-- Y轴文字位置 -->
        <attr name="yTextAlign"/>
        <!-- 是否显示Y轴刻度线 -->
        <attr name="showYScaleLine"/>
        <!-- Y轴刻度线颜色 -->
        <attr name="yScaleLineColor"/>
        <!-- Y轴刻度线线宽 -->
        <attr name="yScaleLineWidth" />
        <!-- Y轴刻度线长度 -->
        <attr name="yScaleLineLength" />

        <attr name="limitLineColor" />
        <attr name="limitLineWidth" />
        <attr name="limitLineLength" />
        <attr name="limitLineSpace" />

        <!-- 折线宽度 -->
        <attr name="lineChartWidth"/>
        <!-- 折线颜色 -->
        <attr name="lineChartColor"/>
        <!-- 折线区域距离左边的距离 -->
        <attr name="lineChartPaddingStart" />
        <!-- 背景颜色 -->
        <attr name="lineChartBgColor" />
        <!-- 绘制曲线 -->
        <attr name="drawCurve" />

        <attr name="limitLineCount" format="integer" />
        <attr name="pointSpace" format="dimension" />
    </declare-styleable>

欢迎大家点赞评论,多提Issues github.com

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

推荐阅读更多精彩内容