BreakValue Property

 

BreakValue returns or sets the data break value for a line graph map. Returns a double.

 

Syntax

object.BreakValue

object.BreakValue = BreakValue

 

Parameter

Type

Description

BreakValue

Double

required; break line data value

 

Remarks

To show the break line, use the AddBreakLine Property.  To set the break line color, use the BreakLine Property.

 

Example 1

This example returns the data break value for a line graph map.

 

Debug.Print LineGraphMap.BreakValue

 

Example 2

This example demonstrates how to set the data break value at 200.

 

LineGraphMap.BreakValue = 200

 

Used by: LineGraphMap object