forked from johnnywjy/JYRadarChart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJYRadarChart.h
33 lines (27 loc) · 1.02 KB
/
JYRadarChart.h
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
//
// JYRadarChart.h
// JYRadarChart
//
// Created by jy on 13-10-31.
// Copyright (c) 2013年 wcode. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface JYRadarChart : UIView
@property (nonatomic, assign) CGFloat r;
@property (nonatomic, assign) CGFloat maxValue;
@property (nonatomic, assign) CGFloat minValue;
@property (nonatomic, assign) BOOL drawPoints;
@property (nonatomic, assign) BOOL fillArea;
@property (nonatomic, assign) BOOL showLegend;
@property (nonatomic, assign) BOOL showStepText;
@property (nonatomic, assign) CGFloat colorOpacity;
@property (nonatomic, strong) UIColor *backgroundLineColorRadial;
@property (nonatomic, strong) NSArray *dataSeries;
@property (nonatomic, strong) NSArray *attributes;
@property (nonatomic, assign) NSUInteger steps;
@property (nonatomic, assign) CGPoint centerPoint;
@property (nonatomic, strong) UIColor *backgroundFillColor;
@property (nonatomic, assign) BOOL clockwise; //direction of data
- (void)setTitles:(NSArray *)titles;
- (void)setColors:(NSArray *)colors;
@end