MpAndroidChart线图在xaxis中间设置值

时间:2019-01-20 13:39:12

标签: android mpandroidchart

我已在项目中添加Linechart,但在左侧获取值,我想将其设置在中间位置

在当前图表上 enter image description here

我想要的是在xAxis的中间绘制具有值的图

enter image description here

要绘制我有以下内容

   LineDataSet set1 = new LineDataSet(values, "DataSet 1");
    set1.setAxisDependency(YAxis.AxisDependency.LEFT);
    set1.setColor(ColorTemplate.getHoloBlue());
    set1.setValueTextColor(ColorTemplate.getHoloBlue());
    set1.setLineWidth(1.5f);
    set1.setDrawCircles(true);
    set1.setDrawValues(true);
    set1.setFillAlpha(65);
    set1.setFillColor(Color.RED);
    set1.setHighLightColor(Color.RED);
    set1.setDrawCircleHole(true);

    // create a data object with the data sets
    LineData data = new LineData(set1);
    data.setValueTextColor(Color.RED);
    data.setValueTextSize(9f);


    // set data
    lineChart.setData(data);
    lineChart.invalidate();
    lineChart.notifyDataSetChanged();

如何使xAxis上的绘制值居中

0 个答案:

没有答案