新版本
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// PNPieChartDataItem.h
|
||||
// PNChartDemo
|
||||
//
|
||||
// Created by Hang Zhang on 14-5-5.
|
||||
// Copyright (c) 2014年 kevinzhow. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface PNPieChartDataItem : NSObject
|
||||
|
||||
+ (instancetype)dataItemWithValue:(CGFloat)value
|
||||
color:(UIColor*)color;
|
||||
|
||||
+ (instancetype)dataItemWithValue:(CGFloat)value
|
||||
color:(UIColor*)color
|
||||
description:(NSString *)description;
|
||||
|
||||
@property (nonatomic) CGFloat value;
|
||||
@property (nonatomic) UIColor *color;
|
||||
@property (nonatomic) NSString *textDescription;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user