ChartsOrg / Charts

Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart.
Apache License 2.0
27.48k stars 5.98k forks source link

How to set different colour to Y-Axis labels ? #5112

Open yuvraj-wamatech opened 10 months ago

yuvraj-wamatech commented 10 months ago
//Y-Left
        let yLeftAxis = combinedChartView.leftAxis
        yLeftAxis.granularity = 1.0

**     yLeftAxis.labelTextColor = .white  **

        yLeftAxis.labelFont = UIFont.systemFont(ofSize: 8.0,weight: .medium)
        yLeftAxis.drawAxisLineEnabled = false
        let yValueFormatter = EmotionGraphViewYAxisFomater()
        yLeftAxis.valueFormatter = `yValueFormatter`

So in above code I want to set multi color to yLeftAxis.labelTextColor like [.red,.yellow, .blue etc....]