单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHPieChart.h
New file
@@ -0,0 +1,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