如何创建半透明孔并一起显示中心文本?我想绘制整个半透明孔而不是一部分。同时,我需要绘制中心文本
我尝试使用Follows显示半透明孔
// draw the hole
chartView.drawHoleEnabled = true
chartView.holeRadiusPercent = 0
chartView.transparentCircleRadiusPercent = 0.382
chartView.transparentCircleColor = UIColor(red: 0.7, green: 0.7, blue: 0.7, alpha: 0.5)
// draw the center text
chartView.drawCenterTextEnabled = true
chartView.centerText = "SUM of\n3,909.00"
但是当将HoleRadiusPercent设置为零时,中心文本将不会绘制在孔中
我该怎么办?