The depth of a 3D graph.
Graph controls
PowerBuilder dot notation:
dw_control.Object.graphname.Depth
Describe and Modify argument:
"graphname.Depth { = ' depthpercent ' }"
Parameter |
Description |
---|---|
graphname |
The graph control within the DataWindow for which you want to set the depth. |
depthpercent |
(exp) An integer whose value is the depth of the graph, specified as a percentage of the graph’s width. Depthpercent can be a quoted DataWindow expression. |
Select the control and set the value in the Properties view, General tab, Depth slider.
string setting
setting = dw1.Object.graph_1.Depth
dw1.Object.graph_1.Depth = 70
setting = dw1.Describe("graph_1.Depth")
dw1.Modify("graph_1.Depth='70'")