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
Scenario
Multiple negative-able values in one ChartDataSet.
Stack bar chart should be drawn with positive bars first, then the negative ones. Instead, it's drawn in the order of their indexes. The result is undefined when trying to draw negative value before a positive one.
Example:
BarChartDataEntry.values = [1, 1, -1, 1], colors = [red, green, yellow, black]
In this case, the yellow stack should be drawn below the xaxis, while black stack should be the one on top of it.
The text was updated successfully, but these errors were encountered:
Scenario
Multiple negative-able values in one ChartDataSet.
Stack bar chart should be drawn with positive bars first, then the negative ones. Instead, it's drawn in the order of their indexes. The result is undefined when trying to draw negative value before a positive one.
Example:
BarChartDataEntry.values = [1, 1, -1, 1], colors = [red, green, yellow, black]
In this case, the yellow stack should be drawn below the xaxis, while black stack should be the one on top of it.
The text was updated successfully, but these errors were encountered: