我确实设法绘制了我想要的图形,但有些我在图形线的末尾得到了圆形的端盖。
我使用GraphView lib为我的代码编写了一系列数据:
GraphViewSeries line1Series = new GraphViewSeries("LINE ONE", new GraphViewSeriesStyle(Color.BLUE, 100), exampleSeries2);
如何将端盖从圆形更换为直端盖,如下所示:
https://cloud.githubusercontent.com/assets/7545176/4953542/227d9380-6682-11e4-88fd-4ad1f4a5ac14.png
答案 0 :(得分:0)
最容易的事情可能是从github克隆项目并改变onDraw()
中的GraphView.java
方法(截至目前的第154行):
paint.setStrokeCap(Paint.Cap.ROUND);
到
paint.setStrokeCap(Paint.Cap.BUTT);