From 3e8437ae559487362fae3525beb79c534c213a51 Mon Sep 17 00:00:00 2001 From: 单军华 Date: Thu, 12 Jul 2018 13:44:34 +0800 Subject: [PATCH] bug修复和功能优化 --- screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHRadarChart.h | 72 ++++++++++++++++++++++++++++++++++++ 1 files changed, 72 insertions(+), 0 deletions(-) diff --git a/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHRadarChart.h b/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHRadarChart.h new file mode 100755 index 0000000..3e65e98 --- /dev/null +++ b/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHRadarChart.h @@ -0,0 +1,72 @@ +// +// JHRadarChart.h +// JHChartDemo +// +// Created by ������ on 16/9/9. +// Copyright �� 2016��� JH. All rights reserved. +// + + + +#import "JHChart.h" + +@interface JHRadarChart : JHChart + + +/** + * Data Source Arrays + */ +@property (nonatomic, strong) NSArray<NSArray*> * valueDataArray; + + +/** + * Each corner of the description text + */ +@property (nonatomic, strong) NSArray<NSString *> * valueDescArray; + + +/** + * The number of layers, the default is 3. (number of scales) + */ +@property (nonatomic, assign) NSInteger layerCount; + +/** + * Layer of fill color, the best choice of translucent color, otherwise will block the line + */ +@property (nonatomic, strong) UIColor * layerFillColor; + + +/** + * Layer boundary line color + */ +@property (nonatomic, strong) UIColor * layerBoardColor; + +/** + * Block line color + */ +@property (nonatomic, strong) UIColor * speraLineColor; + +/** + * Maximum value + */ +@property (nonatomic, assign) CGFloat perfectNumber; + +/** + * Describe the font and color of the text + */ +@property (nonatomic, strong) UIFont * descTextFont; +@property (nonatomic, strong) UIColor * descTextColor; + + +/** + * Fill color array of value module + */ +@property (nonatomic, strong) NSArray<UIColor *> * valueDrawFillColorArray; + +/** + * Boundary color of value module + */ +@property (nonatomic, strong) NSArray<UIColor *> * valueBoardColorArray; + + +@end -- Gitblit v1.8.0