00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface EDChartSeriesFormat : NSObject
00012 {
00013 struct CGColor *mFillColor;
00014 _Bool mHasFill;
00015 _Bool mIsAuto;
00016 struct CGColor *mStrokeColor;
00017 _Bool mHasStroke;
00018 int mStrokeWidth;
00019 _Bool mHasMarker;
00020 unsigned int mMarkerType;
00021 int mMarkerSize;
00022 struct CGColor *mMarkerColor;
00023 int mSeriesNumber;
00024 NSString *mTitle;
00025 int mPieOffset;
00026 }
00027
00028 - (void)dealloc;
00029 - (id)title;
00030 - (void)setTitle:(id)fp8;
00031 - (int)number;
00032 - (void)setNumber:(int)fp8;
00033 - (struct CGColor *)fillColor;
00034 - (void)setFillColor:(struct CGColor *)fp8;
00035 - (void)setHasFill:(_Bool)fp8;
00036 - (_Bool)hasFill;
00037 - (void)setAuto:(_Bool)fp8;
00038 - (_Bool)isAuto;
00039 - (struct CGColor *)strokeColor;
00040 - (void)setStrokeColor:(struct CGColor *)fp8;
00041 - (void)setHasStroke:(_Bool)fp8;
00042 - (_Bool)hasStroke;
00043 - (float)strokeWidth;
00044 - (void)setStrokeWidth:(int)fp8;
00045 - (unsigned int)markerType;
00046 - (void)setMarkerType:(unsigned int)fp8;
00047 - (struct CGColor *)markerColor;
00048 - (void)setMarkerColor:(struct CGColor *)fp8;
00049 - (float)markerSize;
00050 - (void)setMarkerSize:(int)fp8;
00051 - (_Bool)hasMarker;
00052 - (void)setHasMarker:(_Bool)fp8;
00053 - (float)pieOffset;
00054 - (void)setPieOffset:(unsigned int)fp8;
00055
00056 @end
00057