本文主要是介绍MPAndroidChart 之 CombinedChart组合图简单使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
布局代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context="com.rlzz.mpandroidchart.Test2Activity"><com.github.mikephil.charting.charts.CombinedChartandroid:id="@+id/chart"android:layout_width="match_parent"android:layout_height="500dp"/>
</LinearLayout>
Activity代码
private CombinedChart combinedChart;protected String[] suppliers = new String[]{"鸿兴", "利科", "大阪", "沃佳尔", "大唐", "聚科", "其他", "联博", "聚源升", "尹信达"
这篇关于MPAndroidChart 之 CombinedChart组合图简单使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!