Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
(Mainly for MultiLineGraphView)
2. when I use this tool, I find it doesn't support negative number for yAxis, fix this issue
3. Add three more methods for protocol MultiLineGraphViewDataSource
(NSMutableArray *)dataForXAxisForAllLines;
User can define the xAxis Value Array by self.
e.g. (a line is {1,2,3}, the other is {6,7,8}, user can define the xAxis Value Array using the algorithm neeed)
(NSString *)customYAxisFormat:(float)yAxisValue;
(NSString *)customXAxisFormat:(NSString *)xAxisValue;
User can define the formant for Axis value by self.
//Set step number for xAxis display value
@Property (nonatomic) int xAixsStepNumber;
//Set step number for yAxis display value
@Property (nonatomic) int yAixsStepNumber;
//Set animation duration time
@Property (nonatomic) float animationDuration;
//Set default min value for yAxis
@Property (nonatomic) float yAixsDefaultMin;
//Set default max value for yAxis
@Property (nonatomic) float yAixsDefaultMax;
//Set axis Line color (not same with gridLineColor)
@Property (nonatomic, strong) UIColor *axisLineColor;