| 12345678910111213141516171819202122232425262728293031 |
- //
- // SalesPaymentRankChartViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/8/23.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:销售回款排行图表控制器
- #import "BaseViewController.h"
- #import "NSString+Tools.h"
- @interface SalesPaymentRankChartViewController : BaseViewController
- /**
- 排行列表
- */
- @property (strong,nonatomic) NSArray *rankList;
- /**
- 柱状图
- */
- @property(strong,nonatomic) UIView *histogramView;
- @property(strong,nonatomic)UIView *bottomSeparatorView;
- /**
- 刷新数据
- */
- - (void)refreshData;
- @end
|