skip to Main Content

HighCharts : xAxis Categories Date format not working – Ios swift

When I set Date format for XAxis. It's not working Below is my code : let options = HIOptions() xAxis.type = "datetime" xAxis.categories = ["2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00"] xAxis.dateTimeLabelFormats = HIDateTimeLabelFormats() xAxis.dateTimeLabelFormats.month = HIMonth() xAxis.dateTimeLabelFormats.month.main = "%e. %b" options.xAxis = [xAxis] It display…

VIEW QUESTION
Back To Top
Search