Display every value in Android GraphView with a bigger point

3.8k Views Asked by At

Is there an opportunity to add for each value in Graphview a bigger point? Like it's done in google analaytics for example: http://www.cutroni.com/blog/wp-content/uploads/2007/12/20071211-compre-two-metrics.png

I think it would make the data look way better ;-)

1

There are 1 best solutions below

3
On

yes it's is possible since the new version GraphView 3.1.1.

From the Documentation:

You can set the flag to let the GraphView draw circles at the data points.

LineGraphView graphView = new LineGraphView(
      this // context
      , "GraphViewDemo" // heading
);
graphView.setDrawDataPoints(true);
graphView.setDataPointsRadius(15f);

Example