00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface EDChartAxis : NSObject
00012 {
00013 int mType;
00014 NSString *mTitle;
00015 float mMinValue;
00016 float mMaxValue;
00017 float mMajorUnit;
00018 _Bool mIsLog;
00019 float mLogBase;
00020 }
00021
00022 - (void)dealloc;
00023 - (int)type;
00024 - (void)setType:(int)fp8;
00025 - (void)setTitle:(id)fp8;
00026 - (id)title;
00027 - (void)setMinValue:(float)fp8;
00028 - (float)minValue;
00029 - (void)setMaxValue:(float)fp8;
00030 - (float)maxValue;
00031 - (void)setMajorUnit:(float)fp8;
00032 - (float)majorUnit;
00033 - (void)setIsLog:(_Bool)fp8;
00034 - (_Bool)isLog;
00035 - (void)setLogBase:(float)fp8;
00036 - (float)logBase;
00037
00038 @end
00039