我正在使用神奇的库MPAndroidChart。它就像一个魅力,除非我试图改变 BarData 的背景颜色。默认颜色为白色,我想将其更改为透明。
我试过这个:
Paint p1 = mChart.getPaint(Chart.PAINT_GRID_BACKGROUND);
p1.setColor(Color.RED);
和这个:
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/chart1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"/>
...但似乎不起作用。
有任何想法吗 ?
谢谢 =)