0
我想在餅圖中心的主文本下方顯示一個字幕,以讓用戶知道該數字代表什麼。這可能嗎?現在我有一個我轉換成字符串的數字。將字幕添加到餅圖的中心
下面是我的代碼:
func setCenter(days: Int){
let circleColor = UIColor.black
var textColor = UIColor.white
pieChart.holeRadiusPercent = 0.3
pieChart.transparentCircleRadiusPercent = 0.0
let dayString = String(describing: days)
let centerText = NSAttributedString(string: dayString , attributes: [
NSForegroundColorAttributeName:textColor,NSFontAttributeName: UIFont(name: "SubwayLogo",size:30)!])
pieChart.centerAttributedText = centerText
pieChart.centerTextRadiusPercent = 1.0
pieChart.holeColor = circleColor
}
讓我知道如果你需要看代碼的其他部分。謝謝!