我搜索了這個。但我沒有發現任何有用的東西。在LineAndPointFormatter類的文檔中,沒有提到有關厚度的信息。請幫助我解決此問題。如何增加android情節線圖中的線條粗細?
1
A
回答
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);
相關問題
- 1. 如何增加折線圖中的線條粗細?
- 2. 如何增加折線圖的粗細?
- 3. OpenGL線條粗細
- 4. 包'樹形圖'中的線條粗細
- 5. Matlab:將細線添加到圖像,以粗線節省結果
- 6. 隨機線條粗細-OpenCv
- 7. 更改線條粗細gtk_render_line
- 8. 如何增加matplotlib條形圖中錯誤行的粗細?
- 9. 在PdfSharp vb.net中修改線條粗細
- 10. 如何添加一條情節線到Highcharts的條形圖?
- 11. 在圖像中畫一條粗細的線條?
- 12. 如何更改iText中的線條粗細?
- 13. 如何在HTML畫布中改變我的線條粗細?
- 14. 如何在VB.NET中設置一條線的粗細
- 15. Android畫布畫線 - 使線條變粗
- 16. WPF DataGrid垂直線條粗細
- 17. 粗線的Android
- 18. NSMutableAttributedString的刪除線粗細
- 19. 如何更改使用System.Drawing.Pen繪製的線條的粗細?
- 20. 在ggpairs圖中減小線條粗細和'Corr:'字體大小
- 21. 如何更改OpenGL形狀的線條粗細?
- 22. 如何修復摺疊元素的線條粗細差異
- 23. 如何控制分層邊緣捆綁圖表中的線條粗細?
- 24. 如何粗線
- 25. matplotlib:情節線條閉合
- 26. 在QtCore.Qt.CrossPattern上設置圖案顏色和線條粗細
- 27. 在matplotlib中增加圖例線條的線寬
- 28. 在ActionScript中更改Sprite/MovieClip的線條粗細/顏色?
- 29. OpenGL 440 - 控制frag中的線條粗細。
- 30. 更改grid.curve中的線條顏色和粗細。 R
嗨,請用您使用的代碼解釋您的問題。 –