是否有机会为 Graphview 中的每个值添加一个更大的点?就像在谷歌分析中所做的那样,例如: http ://www.cutroni.com/blog/wp-content/uploads/2007/12/20071211-compre-two-metrics.png
我认为这会使数据看起来更好;-)
是否有机会为 Graphview 中的每个值添加一个更大的点?就像在谷歌分析中所做的那样,例如: http ://www.cutroni.com/blog/wp-content/uploads/2007/12/20071211-compre-two-metrics.png
我认为这会使数据看起来更好;-)
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);