2016-07-17 57 views
1

有誰知道如何讓自定義顏色與iOS圖表中的labelTextColor一起使用?當我嘗試插入自定義顏色時,標籤就會消失。例如:在iOS圖表中使用自定義顏色labelTextColor

這工作:

self.chartView.leftAxis.labelTextColor = UIColor.cyanColor() 

但是這樣的事情並不:

self.chartView.rightAxis.labelTextColor = UIColor(red: 150, green: 202, blue: 56, alpha: 1) 

回答

4

更換

self.chartView.rightAxis.labelTextColor = UIColor(red: 150, green: 202, blue: 56, alpha: 1) 

self.chartView.rightAxis.labelTextColor = UIColor(red: 150.0/255, green: 202.0/255, blue: 56.0/255, alpha: 1) 
+0

謝謝,我現在看到這就是演示的意思。不知道爲什麼我沒有想到嘗試它。 10分鐘後,我會接受答案。 –

相關問題