The DataTextToLeft property returns or sets the Draw text to left of bars option for bar map data text labels. Returns a Boolean.
Syntax
object.DataTextToLeft
object.DataTextToLeft = DataTextToLeft
Parameter |
Type |
Description |
DataTextToLeft |
Boolean |
required; true to draw text to the left of the bars |
Remarks
Use the DrawDataText property to show the labels. This command is no longer used in MapViewer versions 6 and newer. DataTextToLeft has been left in the program for backwards compatibility. Use BarSideForDataText property instead.
Example 1
This example returns the state of drawing data text to the left of the map bars.
Debug.Print BarMap.DataTextToLeft
Example 2
This example draws the data text to the left of map bars.
BarMap.DataTextToLeft = True
Used by: BarMap object