You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, sorry for my bad english. I'm using for my first time iOS-charts but I have a weird issue
I implemented a barchartView. Everything works as expected. However I found that if a value is repeated in a BarChartData, the bar for the second value is not displayed. For example in this array:
Hi, sorry for my bad english. I'm using for my first time iOS-charts but I have a weird issue
I implemented a barchartView. Everything works as expected. However I found that if a value is repeated in a BarChartData, the bar for the second value is not displayed. For example in this array:
array = [20.0, 4.0, 6.0, 3.0, 12.0, 16.0, 4.0, 18.0, 2.0, 4.0, 5.0, 4.0]
every bar with a value of 4.0 except the first one is not displayed. However if I change to this
array = [20.0, 4.0, 6.0, 3.0, 12.0, 16.0, 21.0, 18.0, 2.0, 9.0, 5.0, 10.0]
it works perfectly. Am I missing something?
Thanks in advance
The text was updated successfully, but these errors were encountered: