Is there any way to change the message \"No chart data available\" when the chart is not populated?
Edit: Found the answer
If you also want to customize look & feel, you can do it through Paint object:
Paint
mChart.setNoDataText("Description that you want"); Paint p = mChart.getPaint(Chart.PAINT_INFO); p.setTextSize(...); p.setColor(...); p.setTypeface(...); ...