combination of two bar chart and two line chart using aChartEngine in Android
问题 below code to combine two bar and two line chart : public class GraphCombination { private Context context; private String[] weekDays = new String[] { "Sunday", "Monday", "Tuesday", "Wednesday", "Thrusday", "Friday", "Saturday" }; private XYSeriesRenderer lowestTempBarRenderer, highestTempBarRenderer, lowestTempLineRenderer, highestTempLineRenderer; private XYMultipleSeriesRenderer multiRenderer; private int margins[] = { 50, 50, 50, 50 }; public GraphCombination(Context context) { this