如何使用水平條形圖更改xaxis中的特定標籤文字顏色。請顯示附件的截圖和代碼。 [Here is the screen short]如何使用Mp Chart在Android中更改水平條形圖中的特定標籤顏色?
我已經改變了酒吧顏色爲黑色,但我必須要改變對應於欄文本顏色(例如:(您#)顏色需變化)。下面的代碼到目前爲止,我已經嘗試。
XAxis xAxis1 = horizontalBarChart.getXAxis();
xAxis1.setPosition(XAxis.XAxisPosition.BOTTOM);
xAxis1.setTextSize(8);
xAxis1.setSpaceBetweenLabels(8);
xAxis1.setTypeface(tf);
YAxis leftAxis = horizontalBarChart.getAxisLeft();
leftAxis.setEnabled(false);
for(int j=0;j<BarEntryLabels1.size();j++){
if ((BarEntryLabels1.get(j).contains("You"))){
xAxis1.setTextColor(Color.parseColor("#000000"));
}else{
xAxis1.setTextColor(Color.parseColor("#701112"));
}
}
任何代碼和幫助將不勝感激,提前。
檢查此https://stackoverflow.com/questions/38872181/mpandroidchart-bar-chart-how-to-change-color-of-each-label – Shailesh
嘿,沒有這一個是爲了改變酒吧顏色,我已經變成了黑色。 –