//// 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>typedefNS_ENUM(NSUInteger,PNScatterChartPointStyle){PNScatterChartPointStyleCircle=0,PNScatterChartPointStyleSquare=1,};@classPNScatterChartDataItem;typedefPNScatterChartDataItem*(^LCScatterChartDataGetter)(NSUIntegeritem);@interfacePNScatterChartData:NSObject@property(strong)UIColor*fillColor;@property(strong)UIColor*strokeColor;@propertyNSUIntegeritemCount;@property(copy)LCScatterChartDataGettergetData;@property(nonatomic,assign)PNScatterChartPointStyleinflexionPointStyle;/** * 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)CGFloatsize;@end