我已阅读此http://www.android-graphview.org/documentation/label-formatter
静态标签 静态标签是未绑定到数据的标签。换句话说,它们在轴上静态绘制,不与视口中的数据交互。这对于显示“低,中,高”等类似文本非常有用。 静态标签可以与普通(动态)标签组合,例如用于y轴静态标签和x轴动态标签。 您必须使用StaticLabelsFormatter。在这里,您可以设置水平和/或垂直静态标签,您必须选择为动态标签定义自定义标签格式化程序 - 如果有的话。
// use static labels for horizontal and vertical labels
StaticLabelsFormatter staticLabelsFormatter = new StaticLabelsFormatter(graph);
staticLabelsFormatter.setHorizontalLabels(new String[] {"old", "middle", "new"});
staticLabelsFormatter.setVerticalLabels(new String[] {"low", "middle", "high"});
graph.getGridLabelRenderer().setLabelFormatter(staticLabelsFormatter)
我怎样才能做同样的事情,但用整数代替String? 我必须创建一个图表,Y只能假设这些值{134,240,480,720}。谢谢你的帮助。
答案 0 :(得分:0)
我是通过使用字符串空文本
附加整数值来实现的DECIMAL