SalesPaymentRankChartViewController.h 590 B

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