单军华
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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