单军华
2017-03-03 764722d0366346dc435aa906abdd25655e3b0769
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
//
//  PNScatterChartData.h
//  PNChartDemo
//
//  Created by Alireza Arabi on 12/4/14.
//  Copyright (c) 2014 kevinzhow. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
 
typedef NS_ENUM(NSUInteger, PNScatterChartPointStyle) {
    PNScatterChartPointStyleCircle = 0,
    PNScatterChartPointStyleSquare = 1,
};
 
@class PNScatterChartDataItem;
 
typedef PNScatterChartDataItem *(^LCScatterChartDataGetter)(NSUInteger item);
 
@interface PNScatterChartData : NSObject
 
@property (strong) UIColor *fillColor;
@property (strong) UIColor *strokeColor;
 
@property NSUInteger itemCount;
@property (copy) LCScatterChartDataGetter getData;
 
@property (nonatomic, assign) PNScatterChartPointStyle inflexionPointStyle;
 
/**
 * If PNLineChartPointStyle is circle, this returns the circle's diameter.
 * If PNLineChartPointStyle is square, each point is a square with each side equal in length to this value.
 */
@property (nonatomic, assign) CGFloat size;
 
 
@end