This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Description
I integrated the line graph and its working great in Objective-C, but the problem I'm having is with spacing on the xAxis. If you see the attached screenshot, the first label and second one, and second last and last one are not evenly spaced.
Below is the function which I use to setup the graph:
- (void)setupGraphs {
mindfulGraph.enableXAxisLabel = YES;
mindfulGraph.alwaysDisplayDots = YES;
mindfulGraph.colorXaxisLabel = [UIColor lightGrayColor];
mindfulGraph.colorBackgroundXaxis = [UIColor clearColor];
mindfulGraph.enableYAxisLabel = YES;
mindfulGraph.colorYaxisLabel = [UIColor lightGrayColor];
mindfulGraph.colorBackgroundYaxis = [UIColor clearColor];
mindfulGraph.enableReferenceYAxisLines = YES;
mindfulGraph.colorReferenceLines = [UIColor lightGrayColor];
mindfulGraph.enableLeftReferenceAxisFrameLine = YES;
mindfulGraph.enableReferenceAxisFrame = YES;
mindfulGraph.enablePopUpReport = YES;
}
