ivnsch / SwiftCharts

Easy to use and highly customizable charts library for iOS
Apache License 2.0
2.53k stars 410 forks source link

How can i make xAxisLabel to get multiple data instead of one value for one xAxisLabel ? #430

Open MehdiAbdi opened 1 year ago

MehdiAbdi commented 1 year ago

LineChartDataPoint will get something like this LineChartDataPoint(value: 23.0 , xAxisLabel: "A")

but i want it to get an array of value like this LineChartDataPoint(value: [23.0, 10.0, 20.2, 33.6] , xAxisLabel: "A" )

How can i achieve this !!! Thank You All ❤️.