Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Source/BarGraph/GKBarGraph.m
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,14 @@ - (void)_construct {
if ([self _hasLabels]) [self _removeLabels];

[self _constructBars];
[self _constructLabels];

[self _positionBars];
[self _positionLabels];

if([self.dataSource respondsToSelector:@selector(titleForBarAtIndex:)])
{
[self _constructLabels];
[self _positionLabels];
}

}

- (BOOL)_hasBars {
Expand Down