Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTMutableShadow.h
Go to the documentation of this file.
1 #import "CPTShadow.h"
2 
3 @class CPTColor;
4 
6 
7 @property (nonatomic, readwrite, assign) CGSize shadowOffset;
8 @property (nonatomic, readwrite, assign) CGFloat shadowBlurRadius;
9 @property (nonatomic, readwrite, strong, nullable) CPTColor *shadowColor;
10 
11 @end
CPTShadow
Immutable wrapper for various shadow drawing properties.
Definition: CPTShadow.h:3
CPTColor
An immutable color.
Definition: CPTColor.h:3
CPTShadow.h
CPTMutableShadow::shadowOffset
CGSize shadowOffset
The horizontal and vertical offset values, specified using the width and height fields of the CGSize ...
Definition: CPTMutableShadow.h:7
CPTMutableShadow
Mutable wrapper for various shadow drawing properties.
Definition: CPTMutableShadow.h:6
CGSize
typedef CGSize
CPTMutableShadow::shadowBlurRadius
CGFloat shadowBlurRadius
The blur radius, measured in the default user coordinate space. A value of 0.0 (the default) indicate...
Definition: CPTMutableShadow.h:8
CPTMutableShadow::shadowColor
CPTColor * shadowColor
The shadow color. If nil (the default), the shadow will not be drawn.
Definition: CPTMutableShadow.h:9