Floor

Floor class

Encapsulates the object that represents the floor of a 3-D chart.

class Floor extends Area;

Constructors

NameDescription
constructor(Area)Constructs from a parent object convertible to this.

Methods

MethodDescription
getBorder()Gets or sets the border Line.
setBorder(Line)Gets or sets the border Line.
getBackgroundColor()Gets or sets the background System.Drawing.Color of the System.Drawing.Color.
setBackgroundColor(Color)Gets or sets the background System.Drawing.Color of the System.Drawing.Color.
getForegroundColor()Gets or sets the foreground System.Drawing.Color.
setForegroundColor(Color)Gets or sets the foreground System.Drawing.Color.
getFormatting()Represents the formatting of the area.
setFormatting(FormattingType)Represents the formatting of the area.
getInvertIfNegative()If the property is true and the value of chart point is a negative number, the foreground color and background color will be exchanged.
setInvertIfNegative(boolean)If the property is true and the value of chart point is a negative number, the foreground color and background color will be exchanged.
getFillFormat()Represents a FillFormat object that contains fill formatting properties for the specified chart or shape.
getTransparency()Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
setTransparency(number)Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).

constructor(Area)

Constructs from a parent object convertible to this.

constructor(obj: Area);

Parameters:

ParameterTypeDescription
objAreaThe parent object.

getBorder()

Gets or sets the border Line.

getBorder() : Line;

Returns

Line

setBorder(Line)

Gets or sets the border Line.

setBorder(value: Line) : void;

Parameters:

ParameterTypeDescription
valueLineThe value to set.

getBackgroundColor()

Gets or sets the background System.Drawing.Color of the System.Drawing.Color.

getBackgroundColor() : Color;

Returns

Color

setBackgroundColor(Color)

Gets or sets the background System.Drawing.Color of the System.Drawing.Color.

setBackgroundColor(value: Color) : void;

Parameters:

ParameterTypeDescription
valueColorThe value to set.

getForegroundColor()

Gets or sets the foreground System.Drawing.Color.

getForegroundColor() : Color;

Returns

Color

setForegroundColor(Color)

Gets or sets the foreground System.Drawing.Color.

setForegroundColor(value: Color) : void;

Parameters:

ParameterTypeDescription
valueColorThe value to set.

getFormatting()

Represents the formatting of the area.

getFormatting() : FormattingType;

Returns

FormattingType

setFormatting(FormattingType)

Represents the formatting of the area.

setFormatting(value: FormattingType) : void;

Parameters:

ParameterTypeDescription
valueFormattingTypeThe value to set.

getInvertIfNegative()

If the property is true and the value of chart point is a negative number, the foreground color and background color will be exchanged.

getInvertIfNegative() : boolean;

setInvertIfNegative(boolean)

If the property is true and the value of chart point is a negative number, the foreground color and background color will be exchanged.

setInvertIfNegative(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

getFillFormat()

Represents a FillFormat object that contains fill formatting properties for the specified chart or shape.

getFillFormat() : FillFormat;

Returns

FillFormat

getTransparency()

Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).

getTransparency() : number;

setTransparency(number)

Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).

setTransparency(value: number) : void;

Parameters:

ParameterTypeDescription
valuenumberThe value to set.