123456789101112131415161718192021222324 |
- //
- // SSWLineChartView.h
- // SSWCharts
- //
- // Created by WangShaoShuai on 2018/5/3.
- // Copyright © 2018年 com.sswang.www. All rights reserved.
- //
- #import "SSWCharts.h"
- @interface SSWLineChartView : SSWCharts
- @property(nonatomic)NSMutableArray *xValuesArr;//x轴的值数组
- @property(nonatomic)NSMutableArray *yValuesArr;//y轴的值数组
- @property(nonatomic,assign)CGFloat barWidth;//x轴刻度占据的宽度
- @property(nonatomic,assign)CGFloat gapWidth;//间隔宽度
- @property(nonatomic,assign)CGFloat yScaleValue;//y轴的刻度值
- @property(nonatomic,assign)int yAxisCount;//y轴刻度的个数
- @property(nonatomic,copy)NSString *unit;//单位
- @property(nonatomic)UIColor *lineColor;//设置线的颜色
- @property(nonatomic,copy)void(^changeBtn)(UIButton * button);
- -(void)drawLineChart;
- -(void)draWUpdate;
- @end
|