Whether the GraphType is rendered in the DirectX 3D style.
Graph controls and Graph DataWindows
PowerBuilder dot notation:
dw_control.Object.graphname.Render3D
Describe and Modify argument:
"graphname.Render3D { = ' boolean ' }
Parameter |
Description |
|
---|---|---|
graphname |
The graph control for which you want to get or change the type. Graph types that can use the new 3D rendering style are: |
|
|
|
|
boolean |
0 = Original 3D style 1 = New 3D rendering style |
Select the control and set the value in the Properties view, General tab.
The following statement sets a graph control to the DirectX 3D style.
gr_1.Render3D=true
The following statement sets a DataWindow in the graph presentation style to the DirectX 3D style.
dw_1.Object.gr_1.Render3D=true