From 7b02207537d35bfa1714bf8beafc921f717d100a Mon Sep 17 00:00:00 2001 From: 单军华 Date: Wed, 11 Jul 2018 10:47:42 +0800 Subject: [PATCH] 首次上传 --- screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHWaveChart.h | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHWaveChart.h b/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHWaveChart.h new file mode 100755 index 0000000..2991a99 --- /dev/null +++ b/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHWaveChart.h @@ -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 -- Gitblit v1.8.0