//// Created by Jörg Polakowski on 14/12/13.// Copyright (c) 2013 kevinzhow. All rights reserved.//#import <Foundation/Foundation.h>#import <UIKit/UIKit.h>@interfacePNLineChartDataItem:NSObject+(PNLineChartDataItem*)dataItemWithY:(CGFloat)y;+(PNLineChartDataItem*)dataItemWithY:(CGFloat)yandRawY:(CGFloat)rawY;@property(readonly)CGFloaty;// should be within the y range@property(readonly)CGFloatrawY;// this is the raw value, used for point label.@end