I am using the example from Customizing RadWaitingBar - RadWaitingBar - Telerik UI for WinForms that DASH Stile. The problem is, I want to be able to view the text through it. Based on the example code there (attached here), the texted is hidden behind the color bars. The example just above this example on this page that shows the text upside down and right justified, shows the text visible, however, when I take that code an apply it to the lastest telerik release, the text is not visible. I am sure this is probably a settings I am not setting, Any help would greatly help me here.
Here is a sample screen shot
Here is the code I am using
private void ShowWaitingBar()
{
radWaitingBarElementBase.ShowText = true;
radWaitingBarElementBase.Text = "Hello World";
radWaitingBarElementBase.WaitingStyle = Telerik.WinControls.Enumerations.WaitingBarStyles.Dash;
WaitingBarSeparatorElement dash = radWaitingBarElementBase.SeparatorElement;
dash.NumberOfColors = 2;
dash.BackColor = Color.Blue;
dash.BackColor2 = Color.LightBlue;
dash.SweepAngle = 45;
dash.StepWidth = 15;
dash.SeparatorWidth = 10;
dash.GradientPercentage = 0.25f;
radWaitingBarElementBase.StartWaiting();
}