-
-
Notifications
You must be signed in to change notification settings - Fork 753
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drawchart event for finish loading? #28
Comments
Thanks for your question! I think this is what you want /****************************delegate method***************************************/
@protocol AAChartViewDidFinishLoadDelegate<NSObject>
- (void)AAChartViewDidFinishLoad;//the delegate method of finish loading
@end
/****************************delegate method***************************************/
@interface AAChartView : AAWebView<AAWebViewDelegate>
@property (nonatomic, weak) id<AAChartViewDidFinishLoadDelegate>delegate;
@property (nonatomic, assign) CGFloat contentWidth;//content width of AAChartView
@property (nonatomic, assign) CGFloat contentHeight;//content height of AAChartView
- (void)aa_drawChartWithChartModel:(AAChartModel *)chartModel;//function of drawing chart view
- (void)aa_refreshChartWithChartModel:(AAChartModel *)chartModel;//function of refreshing chart view
@end |
NOTE:If you want to use this function ,you need to |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i need to notify the user that the chart is loading and when finished, how can i do that?
The text was updated successfully, but these errors were encountered: