Reputation: 876
I am using Charts to achieve this. I am using combine chart for this.
And I have achieved below things two major problems in this.
Upvotes: 1
Views: 904
Reputation: 5075
1.
combinedChart.zoom(scaleX: 1.0, scaleY: 1.0, x: 0.0, y: 0.0)
2.Use one or more of the following:
combinedChart.xAxis.drawAxisLineEnabled = true
combinedChart.xAxis.drawGridLinesEnabled = true
combinedChart.rightAxis.drawGridLinesEnabled = true
combinedChart.leftAxis.drawGridLinesEnabled = true
combinedChart.rightAxis.drawGridLinesEnabled = true
combinedChart.leftAxis.drawAxisLineEnabled = true
3.
combinedChart.highlightValue(x: 0, dataSetIndex: 0)
Upvotes: 3