Controls the visibility of the back plane.
The following example adds a new data item to the legend and
enables the backplane.
Dim legend As Legend = CType((ChartControl.Legends(0)), Legend)
legend.Mode = LegendMode.Manual
Dim item As LegendDataItem = New LegendDataItem()
item.Text = "Enable item back plane"
legend.Data.TextProps.Backplane.Visible = True
legend.Data.Array.Add(item)
Legend legend = (Legend)(ChartControl.Legends[0]);
legend.Mode = LegendMode.Manual;
LegendDataItem item = new LegendDataItem();
item.Text = "Enable item back plane";
legend.Data.TextProps.Backplane.Visible = true;
legend.Data.Array.Add(item);
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