dkahgld

AAOptionsConstructor.h 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // AAColumnAndBarAndSoOnOptions.h
  3. // AAChartKit
  4. //
  5. // Created by An An on 17/1/9.
  6. // Copyright © 2017年 An An. All rights reserved.
  7. // source code ----*** https://github.com/AAChartModel/AAChartKit ***--- source code
  8. //
  9. /*
  10. * -------------------------------------------------------------------------------
  11. *
  12. * ❀❀❀ WARM TIPS!!! ❀❀❀
  13. *
  14. * Please contact me on GitHub,if there are any problems encountered in use.
  15. * GitHub Issues : https://github.com/AAChartModel/AAChartKit/issues
  16. * -------------------------------------------------------------------------------
  17. * And if you want to contribute for this project, please contact me as well
  18. * GitHub : https://github.com/AAChartModel
  19. * StackOverflow : https://stackoverflow.com/users/7842508/codeforu
  20. * JianShu : http://www.jianshu.com/u/f1e6753d4254
  21. * SegmentFault : https://segmentfault.com/u/huanghunbieguan
  22. *
  23. * -------------------------------------------------------------------------------
  24. */
  25. #import <Foundation/Foundation.h>
  26. #import "AAOptions.h"
  27. #import "AAChart.h"
  28. #import "AAAnimation.h"
  29. #import "AATitle.h"
  30. #import "AASubtitle.h"
  31. #import "AAXAxis.h"
  32. #import "AAYAxis.h"
  33. #import "AALabels.h"
  34. #import "AATooltip.h"
  35. #import "AAPlotOptions.h"
  36. #import "AAColumn.h"
  37. #import "AABar.h"
  38. #import "AAArea.h"
  39. #import "AAAreaspline.h"
  40. #import "AALine.h"
  41. #import "AASpline.h"
  42. #import "AAPie.h"
  43. #import "AAPlotLinesElement.h"
  44. #import "AALegend.h"
  45. #import "AADataLabels.h"
  46. #import "AAStyle.h"
  47. #import "AASeries.h"
  48. #import "AAMarker.h"
  49. #import "AAChartModel.h"
  50. #import "AAOptions3d.h"
  51. @interface AAOptionsConstructor : NSObject
  52. /**
  53. Configure the chart content and style
  54. @param chartModel The instance object of chart model
  55. @return The instance object of chart options
  56. */
  57. + (AAOptions *)configureChartOptionsWithAAChartModel:(AAChartModel *)chartModel;
  58. @end