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 !
I have a strange issue when trying to display a BarChartView.
When I make a BarChartDataSet with only negatives y-values, the valueFormatter "stringForValue" never get called. If I set at least one of the value positive, it works.
Replace BarChartDataEntry(x:0, y:-4) by BarChartDataEntry(x:0, y:4), and the stringForValue is called.
Here, I set my custom IValueFormatter, but the issue also exist if I let the default one.
Am I missing a configuration property ?
The text was updated successfully, but these errors were encountered:
Ok so it works now.
I am including the framework using Carthage, and it seems I just forgot to add the frameworks to the "Linked frameworks and librairies" on my project target.
It is weird that it is the only issue, since I used this framework a lot in this project.
Thanks !
Hi !
I have a strange issue when trying to display a BarChartView.
When I make a BarChartDataSet with only negatives y-values, the valueFormatter "stringForValue" never get called. If I set at least one of the value positive, it works.
Here is my code (with an example of data) :
Replace
BarChartDataEntry(x:0, y:-4)
byBarChartDataEntry(x:0, y:4)
, and the stringForValue is called.Here, I set my custom IValueFormatter, but the issue also exist if I let the default one.
Am I missing a configuration property ?
The text was updated successfully, but these errors were encountered: