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
the sublayers are not properly resized to match the frame of the UIView. (See picture below.) I think you need to add
for (CALayer *aLayer in barView.layer.sublayers) {
aLayer.frame = barView.bounds;
}
in the dispatch_block_t createBars around line 220 (i.e., just after the index++ line.
BTW, thanks for all the great work on this project!
The text was updated successfully, but these errors were encountered:
Not super familiar with how subLayers align themselves when their parent's frame changes, but can't this type of thing be done in the layoutSubviews of your custom bar instance?
When UIViews have associated sublayers and are passed into JBBarChart with:
the sublayers are not properly resized to match the frame of the UIView. (See picture below.) I think you need to add
BTW, thanks for all the great work on this project!
The text was updated successfully, but these errors were encountered: