InventoryAnalysisViewChartViewController.h 525 B

12345678910111213141516171819202122232425262728
  1. //
  2. // InventoryAnalysisViewChartViewController.h
  3. // IBOSS
  4. //
  5. // Created by ssl on 2018/1/4.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface InventoryAnalysisViewChartViewController : BaseViewController
  10. /**
  11. 排行列表
  12. */
  13. @property (strong,nonatomic) NSArray *rankList;
  14. /**
  15. 柱状图
  16. */
  17. @property(strong,nonatomic) UIView *histogramView;
  18. @property(strong,nonatomic)UIView *bottomSeparatorView;
  19. /**
  20. 刷新数据
  21. */
  22. - (void)refreshData:(NSString *) str;
  23. @end