OverlapPercent

Description

The percentage of overlap for the data markers (such as bars or columns) in different series in a graph.

Applies to

Graph controls

Syntax

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.

Usage


In the painter

Select the control and set the value in the Properties view, General tab, OverlapPercent option (applicable when a series has been specified).

Examples

Example 1

string setting

setting = dw1.Object.graph_1.OverlapPercent

dw1.Object.graph_1.OverlapPercent = 25

Example 2

setting = dw1.Describe("graph_1.OverlapPercent")
dw1.Modify("graph_1.OverlapPercent=25")