单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHWaveChart.h
New file
@@ -0,0 +1,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