I'm using Android GraphView for building a line chart. I find the line thickness a little too thin. Is there any way to increase the thickness? I couldn't find anything in their docs.
Asked
Active
Viewed 1,976 times
2 Answers
3
Check GraphViewSeriesStyle(int color, int thinkness)
GraphViewSeries line = new GraphViewSeries("", new GraphViewSeriesStyle(Color.GREEN, 3), new GraphViewData[] { new GraphViewData(0, 0) });

Evgeny
- 39
- 2
-
When already initialized, you can use: line.getStyle().thickness = 3; – Hibbem Jun 21 '16 at 11:05
2
If using v4.0.0:
LineGraphSeries<DataPoint> lineGraphSeries = new LineGraphSeries<DataPoint>();
lineGraphSeries.setThickness(8);

arober11
- 1,969
- 18
- 31