1、背景设置:
render中:
renderer.setApplyBackgroundColor(true);----置为true大概是表示需要用我设置的颜色
renderer.setBackgroundColor(Color.BLUE);----整个图标的颜色。。颜色很土。
renderer.setMarginsColor(Color.TRANSPARENT);设置图表周围默认黑边颜色。。同样很丑 transparent是透明色
!!!但是!!
如果在布局文件中 设置background="@drawable/xxx"就是设置图表背景为你的图片了的话
只需要设置
renderer.setMarginsColor(Color.argb(0x00, 0x01, 0x01, 0x01));即可!!其他的什么都不用管了!
就酱