NChartTextureBrush Class Reference

Inherits from NChartBrush : NSObject
Declared in NChartTextureBrush.h

Overview

The NChartTextureBrush class provides the brush that fills the area with a texture (aka image).

+ textureBrushWithImage:

Create brush with image.

+ (NChartTextureBrush *)textureBrushWithImage:(UIImage *)image

Parameters

image
  • image for the brush.

Return Value

a new instance of the texture brush.

Declared In

NChartTextureBrush.h

+ textureBrushWithImage:backgroundColor:position:

Create brush with image, background color and position of texture.

+ (NChartTextureBrush *)textureBrushWithImage:(UIImage *)image backgroundColor:(UIColor *)color position:(NChartTexturePosition)position

Parameters

image
  • image for the brush.
color
  • background color for the brush.
position
  • position for the texture.

Return Value

a new instance of the texture brush.

Declared In

NChartTextureBrush.h

– initWithImage:

Init brush with image.

- (id)initWithImage:(UIImage *)image

Parameters

image
  • image for the brush.

Return Value

the initialized instance of a brush.

Declared In

NChartTextureBrush.h

– initWithImage:backgroundColor:position:

Init brush with image, background color and position of texture.

- (id)initWithImage:(UIImage *)image backgroundColor:(UIColor *)color position:(NChartTexturePosition)position

Parameters

image
  • image for the brush.
color
  • background color for the brush.
position
  • position for the texture.

Return Value

the initialized instance of a brush.

Declared In

NChartTextureBrush.h

  image

Image of the brush.

@property (nonatomic, strong) UIImage *image

Declared In

NChartTextureBrush.h

  backgroundColor

Color that fills the area around the texture (if any). If nil, the area is filled with black color.

@property (nonatomic, strong) UIColor *backgroundColor

Declared In

NChartTextureBrush.h

  position

Position of the texture.

@property (nonatomic, assign) NChartTexturePosition position

Declared In

NChartTextureBrush.h