Controls whether or not the text should use the Z position of the base point.
The following example instructs the bar labels to use the Z value of the bar they are attached to. This is why these objects will disappear when overlapped by a chart element closer to the viewer.
Dim chart As Chart = ChartControl.Charts.GetAt(0)
Dim bar As BarSeries = CType(chart.Series.Add(SeriesType.Bar), BarSeries)
bar.Add(10, "Apples")
bar.Add(20, "Oranges")
bar.Appearance.LineMode = AppearanceLineMode.Series
bar.DataLabels.Text.TextOverlapsImage = False
Chart chart = ChartControl.Charts.GetAt(0);
BarSeries bar = (BarSeries)chart.Series.Add(SeriesType.Bar);
bar.Add(10, "Apples");
bar.Add(20, "Oranges");
bar.Appearance.LineMode = AppearanceLineMode.Series;
bar.DataLabels.Text.TextOverlapsImage = false;
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2