edw1nzhao / cs2340_group16

CS2340 Group 16 Crowd-Sourced Water Reporting App
2 stars 1 forks source link

Add axes labels to Historical Report graph. #133

Closed tomonarifeehan closed 7 years ago

tomonarifeehan commented 7 years ago

Add an x-axis label for month of the year and y-axis label for average ppm value.

tomonarifeehan commented 7 years ago
graphView = (GraphView) findViewById(R.id.graph);
GridLabelRenderer gridLabel = graphView.getGridLabelRenderer();
gridLabel.setHorizontalAxisTitle("Month");
gridLabel.setVerticalAxisTitle("PPM");
tomonarifeehan commented 7 years ago

Done.