The percentage of overlap for the data markers (such as bars or columns) in different series in a graph.
Graph controls
PowerBuilder dot notation:
dw_control.Object.graphname.OverlapPercent
Describe and Modify argument:
"graphname.OverlapPercent { = ' integer ' }"
Parameter |
Description |
---|---|
graphname |
The name of the graph control in the DataWindow object for which you want to get or set the percentage of overlap. |
integer |
(exp) An integer specifying the percent of the width of the data markers that will overlap. Integer can be a quoted DataWindow expression. |
Select the control and set the value in the Properties view, General tab, OverlapPercent option (applicable when a series has been specified).
string setting
setting = dw1.Object.graph_1.OverlapPercent
dw1.Object.graph_1.OverlapPercent = 25
setting = dw1.Describe("graph_1.OverlapPercent") dw1.Modify("graph_1.OverlapPercent=25")