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
Bar chart with single dataSet and force groupSpace to be 0.8 will leads to strange behavior for xAxis label rendering and highlight when scaleX > 1.0.
To reproduce, simply return a number say 0.8 for groupSpace, like below, and zoom in and scroll, you will see some xAxis label disappeared, and highlighting also highlight wrong bar.
/// The spacing is relative to a full bar widthpublicvargroupSpace:CGFloat{get{
if (_dataSets.count <=1){return 0.8
}return _groupSpace
}set{
_groupSpace = newValue
}}
I am not sure if it's intended to return groupSpace 0.0 for single dataSet. It seems like we don't want to support groupSpace for single dataSet?
The text was updated successfully, but these errors were encountered:
Bar chart with single dataSet and force groupSpace to be 0.8 will leads to strange behavior for xAxis label rendering and highlight when scaleX > 1.0.
To reproduce, simply return a number say 0.8 for groupSpace, like below, and zoom in and scroll, you will see some xAxis label disappeared, and highlighting also highlight wrong bar.
I am not sure if it's intended to return groupSpace 0.0 for single dataSet. It seems like we don't want to support groupSpace for single dataSet?
The text was updated successfully, but these errors were encountered: