单军华
2018-07-12 3e8437ae559487362fae3525beb79c534c213a51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  JHWaveChart.h
//  JHChartDemo
//
//  Created by cjatech-简豪 on 16/4/13.
//  Copyright © 2016年 JH. All rights reserved.
//
 
#import "JHChart.h"
 
typedef NS_ENUM(NSInteger,JHWaveChartType){
    
    JHWaveChartUpType = 0,
    JHWaveChartUpAndDownType
    
};
 
@interface JHWaveChart : JHChart
 
 
 
 
/*         X轴刻度数据          */
@property (nonatomic, strong) NSArray * xLineDataArr;
 
 
/*         值数据数组          */
@property (nonatomic, strong) NSArray * valueDataArr;
 
 
@property (nonatomic, strong) UIColor * xAndYLineColor;
-(instancetype)initWithFrame:(CGRect)frame andType:(JHWaveChartType)waveChartType;
 
 
 
@end