如何在android绘图线图中增加线条的粗细?

时间:2013-11-27 04:26:47

标签: android androidplot

我搜索了这个。但我没有找到任何有用的东西。在LineAndPointFormatter类的文档中没有提到厚度..帮我解决这个问题。

2 个答案:

答案 0 :(得分:3)

这可以帮到你:

    LineAndPointFormatter lineAndPointFormatter = new LineAndPointFormatter(Color.rgb(0, 0, 0), null, null);

    //change the line width
    Paint paint = lineAndPointFormatter.getLinePaint();
    paint.setStrokeWidth(3);
    lineAndPointFormatter.setLinePaint(paint);

答案 1 :(得分:1)

paint对象是可变的,因此您无需复制它来设置它。

LineAndPointFormatter lineAndPointFormatter = new LineAndPointFormatter(Color.rgb(0, 0, 0), null, null);

// Set the line (stroke) width.
lineAndPointFormatter.getLinePaint().setStrokeWidth(3);