BarChart柱状图:
界面布局
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/seekBar1"
android:layout_margin="20dp" />
首先在activity中对柱状图的属性进行设置
其中mChart是对柱状图的样式及效果进行设置,Legend是图表标题图例位置样式的设置
/***图表设置***/
//背景颜色
chart.setBackgroundColor(Color.WHITE);
//不显示图表网格
chart.setDrawGridBackground(false);
//背景阴影
chart.setDrawBarShadow(false);
chart.setHighlightFullBarEnabled(false);
//显示边框
chart.setDrawBorders(true);
Matrix m=new Matrix();
m.postScale(20f,1f);//两个参数分别是x,y轴的缩放比例。例如:将x轴的数据放大为之前的1.5倍
chart.getViewPortHandler().refresh(m,chart,false);//将图表动画显示之前进行缩放
chart.animateX(1000);
/***XY轴的设置***/
//X轴设置显示位置在底部
xAxis = chart.getXAxis();
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
xAxis.setAxisMinimum(0f);
xAxis.setGranularity(1f);
leftAxis = chart.getAxisLeft();
rightAxis = chart.getAxisRight();
//保证Y轴从0开始,不然会上移一点
leftAxis.setAxisMinimum(0f);
rightAxis.setAxisMinimum(0f);
/***折线图例 标签 设置***/
legend = chart.getLegend();
legend.setForm(Legend.LegendForm.LINE);
legend.setTextSize(11f);
//显示位置
legend.setVerticalAlignment(Legend.LegendVerticalAlignment.TOP);
legend.setHorizontalAlignment(Legend.LegendHorizontalAlignment.CENTER);
legend.setOrientation(Legend.LegendOrientation.HORIZONTAL);
//是否绘制在图表里面
legend.setDrawInside(false);
在设置好柱状图的样式及效果之后,对其中的数据进行设置,list为数据值
属性为Name(名称),Num(数量)
List<BarEntry> barEntryList = new ArrayList();
for (int i = 0; i < list.size(); i++) {
barEntryList.add(new BarEntry(i,list.get(i).getNum);
}
BarDataSet dataset = new BarDataSet(barEntryList,"第一组的名称");
dataset.setColor(Color.rgb(129, 216, 200));//设置第一组的颜色
final Entity entity = entity;//为了后续将X轴数值设置为汉字做准备
BarData data = new BarData(dataset);//如果未多组时传入的是X值以及List<BarDataSet>
data.setValueTextSize(10f);
data.setBarWidth(0.9f);
chart.setData(data);
chart.getBarData().setBarWidth(barWidth);
chart.getXAxis().setAxisMinimum(0);
chart.getXAxis().setValueFormatter(new IAxisValueFormatter() {//设置X值为汉字,格式化
@Override
public String getFormattedValue(float value, AxisBase axis) {
return double2String(value,townsNatureChartEntity1);
}
});
chart.invalidate(); //将图表重绘以显示设置的属性和数据
格式化的具体方法
public String double2String(float f, Entity entity) {
return entity.get(int(f)).getName();
}
这样显示出来的柱状图,则Y轴为数值,X轴为汉字。