0

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.

Andrew T.
  • 4,701
  • 8
  • 43
  • 62
user3792936
  • 1
  • 1
  • 3

2 Answers2

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
2

If using v4.0.0:

    LineGraphSeries<DataPoint> lineGraphSeries  = new LineGraphSeries<DataPoint>();
    lineGraphSeries.setThickness(8);
arober11
  • 1,969
  • 18
  • 31