我正在基于我的Web服务API绘制图形,但图表中的所有条形柱均使用相同的颜色,并且未在图表内部显示X轴值。
val barDataSet = BarDataSet(entries, "Bar Data Set")
val data = BarData(labels, barDataSet)
barChart.data = data // set the data and list of lables into chart
barChart.setDescription("User Count for a Week") // set the description
barDataSet.setColors(ColorTemplate.COLORFUL_COLORS)
barDataSet.color = resources.getColor(R.color.colorAccent)
barDataSet.setColor(Color.BLUE)
barDataSet.setColor(Color.GREEN)
barChart.animateY(5000)