没有圆角端盖的图形

时间:2014-11-07 15:54:44

标签: java android graph android-graphview

我确实设法绘制了我想要的图形,但有些我在图形线的末尾得到了圆形的端盖。

我使用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

1 个答案:

答案 0 :(得分:0)

最容易的事情可能是从github克隆项目并改变onDraw()中的GraphView.java方法(截至目前的第154行):

paint.setStrokeCap(Paint.Cap.ROUND);

paint.setStrokeCap(Paint.Cap.BUTT);