| 12345678910111213141516171819202122232425262728 |
- //
- // InventoryAnalysisViewChartViewController.h
- // IBOSS
- //
- // Created by ssl on 2018/1/4.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface InventoryAnalysisViewChartViewController : BaseViewController
- /**
- 排行列表
- */
- @property (strong,nonatomic) NSArray *rankList;
- /**
- 柱状图
- */
- @property(strong,nonatomic) UIView *histogramView;
- @property(strong,nonatomic)UIView *bottomSeparatorView;
- /**
- 刷新数据
- */
- - (void)refreshData:(NSString *) str;
- @end
|