Share via


ChartGroup.SplitValue Property (Word)

Returns or sets the threshold value separating the two sections of either a pie-of-pie chart or a bar-of-pie chart. Read/write Variant.

Version Information

Version Added: Word 2007

Syntax

expression .SplitValue

expression A variable that represents a ChartGroup object.

Example

The following example splits the two sections of the chart by value, combining all values under 10 in the primary pie and displaying them in the secondary section. You must run this example on either a pie-of-pie chart or a bar-of-pie chart.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.ChartGroups(1) 
 .SplitType = xlSplitByValue 
 .SplitValue = 10 
 .VaryByCategories = True 
 End With 
 End If 
End With

See Also

Concepts

ChartGroup Object

ChartGroup Object Members