新版本
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// PNScatterChartDataItem.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>
|
||||
|
||||
@interface PNScatterChartDataItem : NSObject
|
||||
|
||||
+ (PNScatterChartDataItem *)dataItemWithX:(CGFloat)x AndWithY:(CGFloat)y;
|
||||
|
||||
@property (readonly) CGFloat x; // should be within the x range
|
||||
@property (readonly) CGFloat y; // should be within the y range
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user