ivnsch/SwiftCharts

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

MehdiAbdi opened this issue · 0 comments

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 ❤️.