AndroidPlot中的重点

时间:2014-07-10 23:28:09

标签: android graph androidplot

跟进Custom points on graph using AndroidPlot

我们正在尝试使图表上的点(来自AndroidPlot的SimpleXYPlot)更大,以便可以更轻松地读取图表。它看起来并不像是一个简单的设置,上面问题的答案涉及制作一个自定义渲染器,这看起来有点过分。

有更简单的方法吗?

1 个答案:

答案 0 :(得分:2)

您可以通过设置LineAndPointFormatter的顶点绘画的笔触宽度来控制大小。

编程:

formatter.getVertexPaint().setStrokeWidth(PixelUtils.dpToPix(20));

通过XML(使用配置器):

vertexPaint.strokeWidth="20dp"