Walls
Walls class
Encapsulates the object that represents the walls of a 3-D chart.
class Walls extends Floor;
Constructors
Name | Description |
---|---|
constructor(Floor) | Constructs from a parent object convertible to this. |
Properties
Property | Type | Description |
---|---|---|
centerX | number | Readonly. Gets the x coordinate of the left-bottom corner of Wall center in units of 1/4000 of chart’s width after calls Chart.Calculate() method. |
centerY | number | Readonly. Gets the y coordinate of the left-bottom corner of Wall center in units of 1/4000 of chart’s height after calls Chart.Calculate() method. |
width | number | Readonly. Gets the width of left to right in units of 1/4000 of chart’s width after calls Chart.Calculate() method. |
depth | number | Readonly. Gets the depth front to back in units of 1/4000 of chart’s width after calls Chart.Calculate() method. |
height | number | Readonly. Gets the height of top to bottom in units of 1/4000 of chart’s height after calls Chart.Calculate() method. |
centerXPx | number | Readonly. Gets the x coordinate of the left-bottom corner of Wall center in units of pixels after calls Chart.Calculate() method. |
centerYPx | number | Readonly. Gets the y coordinate of the left-bottom corner of Wall center in units of pixels after calls Chart.Calculate() method. |
widthPx | number | Readonly. Gets the width of left to right in units of pixels after calls Chart.Calculate() method. |
depthPx | number | Readonly. Gets the depth front to back in units of pixels after calls Chart.Calculate() method. |
heightPx | number | Readonly. Gets the height of top to bottom in units of pixels after calls Chart.Calculate() method. |
backgroundColor | Color | Gets or sets the background Color of the Area. |
foregroundColor | Color | Gets or sets the foreground Color. |
formatting | FormattingType | Represents the formatting of the area. |
invertIfNegative | 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. |
fillFormat | FillFormat | Readonly. Represents a FillFormat object that contains fill formatting properties for the specified chart or shape. |
transparency | number | Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear). |
border | Line | Gets or sets the border Line. |
Methods
Method | Description |
---|---|
getCubePointCount() | Gets the number of cube points after calls Chart.Calculate() method. |
getCubePointXPx(number) | Gets x-coordinate of the apex point of walls cube after calls Chart.Calculate() method. The number of apex points of walls cube is eight |
getCubePointYPx(number) | Gets y-coordinate of the apex point of walls cube after calls Chart.Calculate() method. The number of apex points of walls cube is eight. |
constructor(Floor)
Constructs from a parent object convertible to this.
constructor(obj: Floor);
Parameters:
Parameter | Type | Description |
---|---|---|
obj | Floor | The parent object. |
centerX
Readonly. Gets the x coordinate of the left-bottom corner of Wall center in units of 1/4000 of chart’s width after calls Chart.Calculate() method.
centerX : number;
centerY
Readonly. Gets the y coordinate of the left-bottom corner of Wall center in units of 1/4000 of chart’s height after calls Chart.Calculate() method.
centerY : number;
width
Readonly. Gets the width of left to right in units of 1/4000 of chart’s width after calls Chart.Calculate() method.
width : number;
depth
Readonly. Gets the depth front to back in units of 1/4000 of chart’s width after calls Chart.Calculate() method.
depth : number;
height
Readonly. Gets the height of top to bottom in units of 1/4000 of chart’s height after calls Chart.Calculate() method.
height : number;
centerXPx
Readonly. Gets the x coordinate of the left-bottom corner of Wall center in units of pixels after calls Chart.Calculate() method.
centerXPx : number;
centerYPx
Readonly. Gets the y coordinate of the left-bottom corner of Wall center in units of pixels after calls Chart.Calculate() method.
centerYPx : number;
widthPx
Readonly. Gets the width of left to right in units of pixels after calls Chart.Calculate() method.
widthPx : number;
depthPx
Readonly. Gets the depth front to back in units of pixels after calls Chart.Calculate() method.
depthPx : number;
heightPx
Readonly. Gets the height of top to bottom in units of pixels after calls Chart.Calculate() method.
heightPx : number;
backgroundColor
Gets or sets the background Color of the Area.
backgroundColor : Color;
foregroundColor
Gets or sets the foreground Color.
foregroundColor : Color;
formatting
Represents the formatting of the area.
formatting : FormattingType;
invertIfNegative
If the property is true and the value of chart point is a negative number, the foreground color and background color will be exchanged.
invertIfNegative : boolean;
fillFormat
Readonly. Represents a FillFormat object that contains fill formatting properties for the specified chart or shape.
fillFormat : FillFormat;
transparency
Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
transparency : number;
border
Gets or sets the border Line.
border : Line;
getCubePointCount()
Gets the number of cube points after calls Chart.Calculate() method.
getCubePointCount() : number;
getCubePointXPx(number)
Gets x-coordinate of the apex point of walls cube after calls Chart.Calculate() method. The number of apex points of walls cube is eight
getCubePointXPx(index: number) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number |
getCubePointYPx(number)
Gets y-coordinate of the apex point of walls cube after calls Chart.Calculate() method. The number of apex points of walls cube is eight.
getCubePointYPx(index: number) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number |