2013-11-27 1 views

답변

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); 
+0

감사합니다. 잘 작동합니다. – Anandhu

+0

@Anandhu : 환영하는 친구 .... –

1

페인트 개체를 변경할 수 있습니다.

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

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