单军华
2016-12-21 8329ef237d1841d377718813a0b452ea0df64378
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
//
//  JHPieChart.h
//  JHCALayer
//
//  Created by cjatech-简豪 on 16/5/3.
//  Copyright © 2016年 JH. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "JHChart.h"
@interface JHPieChart : JHChart
 
/**
 *  Need to draw the specific values。Elements can be either NSString or NSNumber type
 */
@property (nonatomic, strong) NSArray * valueArr;
 
 
/**
 *  Description of each segment of a pie graph
 */
@property (nonatomic, strong) NSArray * descArr;
 
 
/**
 *  An array of colors for each section of the pie
 */
@property (nonatomic, strong) NSArray * colorArr;
 
 
/**
 *  The length of the outward shift when the pie chart hits
 */
@property (assign , nonatomic) CGFloat positionChangeLengthWhenClick;
 
 
 
 
@end