GroupsAdjacent Property

The GroupsAdjacent property specifies if bar chart groups are plotted adjacently or overlapping. Returns a Boolean.

Syntax

object.GroupsAdjacent

object.GroupsAdjacent = GroupsAdjacent

 

Parameter Type Description
GroupsAdjacent Boolean required, true to plot adjacent groups. False to overlap groups.

 

Remarks

Polar Bar Charts cannot have adjacent groups.

Example 1

The following example returns the GroupsAdjacent property.

Debug.Print Graph1.GroupsAdjacent

Example 2

The following example demonstrates how to make groups adjacent in the plot.

Graph1.GroupsAdjacent = True

 

Used by: AutoGraph Object