SalesAchievementChartViewController.h 541 B

12345678910111213141516171819202122232425
  1. //
  2. // ChartViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/8/21.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:销售业绩图表控制器
  9. #import "BaseViewController.h"
  10. @interface SalesAchievementChartViewController : BaseViewController
  11. /**
  12. 销售业绩排行列表
  13. */
  14. @property (strong,nonatomic) NSArray *rankList;
  15. @property(strong,nonatomic) UIView *histogramView;
  16. @property(strong,nonatomic) UIView *bottomSeparatorView;
  17. /**
  18. 刷新数据函数
  19. */
  20. -(void)refreshData;
  21. @end