// // ChartViewController.h // IBOSS // // Created by guan hong hou on 2017/8/21. // Copyright © 2017年 elongtian. All rights reserved. // // 功能描述:销售业绩图表控制器 #import "BaseViewController.h" @interface SalesAchievementChartViewController : BaseViewController /** 销售业绩排行列表 */ @property (strong,nonatomic) NSArray *rankList; @property(strong,nonatomic) UIView *histogramView; @property(strong,nonatomic) UIView *bottomSeparatorView; /** 刷新数据函数 */ -(void)refreshData; @end