library과 협력하여 내 앱에서 멋진 차트를 작성합니다. 모든 것이 잘 작동하지만 오늘 문제가 발생했습니다. 차트의 전설 아래 배경색을 추가하고 싶습니다.차트의 배경색에 배경색을 추가하는 방법
내 전설은 다음과 같습니다
chart`s 전설 부분의 내 현재의 구현 :
private func prepareLegend() {
lineChart.legend.drawInside = true
lineChart.legend.horizontalAlignment = .right
lineChart.legend.verticalAlignment = .top
lineChart.legend.orientation = .vertical
lineChart.legend.formSize = 14.0
lineChart.legend.yEntrySpace = 6.0
lineChart.legend.font = UIFont.pmd_robotoRegular(ofSize: 12.0)
lineChart.legend.textColor = UIColor.pmd_darkGrey
let upperLegend = LegendEntry()
upperLegend.label = "Upper Thershold"
upperLegend.form = .square
upperLegend.formColor = UIColor.pmd_red
let lowerLegend = LegendEntry()
lowerLegend.label = "Lower Thershold"
lowerLegend.form = .square
lowerLegend.formColor = UIColor.pmd_red
lineChart.legend.extraEntries = [upperLegend, lowerLegend]
}
나는 이런 식으로 뭔가를 달성하고자하는
Anyb 여기서 ody는이 라이브러리에 익숙하고 도움이 될 수 있습니까?
해결책을 찾았습니까? –
불행히도 없습니다. –