如何在GraphView for Android中更改X和Y轴编号的颜色?

时间:2018-08-23 16:58:08

标签: android-graphview

我在我的应用程序中使用GraphView来显示来自磁场传感器值的实时图形。

按以下方式初始化GraphView对象:

GraphView graph = findViewById(R.id.graph);
...

并使用以下设置数据序列和网格颜色:

...
graph.addSeries(series);
...
graph.getGridLabelRenderer().setGridColor(Color.RED);

结果我得到了。

Graph with numbers I want to change highlited

现在我要删除上图中用绿色箭头指示的X和Y轴值数字,我该怎么做?如果无法删除它们,如何更改其字体颜色?我将其设置为背景。

1 个答案:

答案 0 :(得分:0)

只需找到我想要的内容,即可沿轴禁用X和Y数字,请使用:

graph.getGridLabelRenderer().setVerticalLabelsVisible(false);
graph.getGridLabelRenderer().setHorizontalLabelsVisible(false);