2015-06-17 20 views

risposta

20
chart.setNoDataText("Description that you want"); 
6

Se si vuole anche di personalizzare aspetto & tatto, puoi farlo attraverso Paint oggetto:

mChart.setNoDataText("Description that you want"); 
Paint p = mChart.getPaint(Chart.PAINT_INFO); 
p.setTextSize(...); 
p.setColor(...); 
p.setTypeface(...); 
... 
Problemi correlati