or



01.Private Sub Btn_ReadFromDB_Click(sender As Object, e As EventArgs) Handles Btn_ReadFromDB.Click02. StatusLabel.Text = ".................."03. Dim pleaseWait As New PleaseWaitForm04. 'pleaseWait.Location = Me.Location05. pleaseWait.StartPosition = FormStartPosition.CenterScreen06. pleaseWait.Show()07. ' Set cursor as hourglass08. Cursor.Current = Cursors.WaitCursor09. PleaseWaitForm.RadWaitingBar.StartWaiting()10. Application.DoEvents()11. 'Read Excel Database12. ReadFromExcel("\Assets\Documents\?????.xls")13. PleaseWaitForm.RadWaitingBar.StopWaiting()14. Cursor.Current = Cursors.Default15. ' Hide the please wait form16. pleaseWait.Hide()17. End Sub



Hello,
Telerik v2013 "UI for Winforms"
.Net 3.5
Visual Studio 2008
We have a .Net desktop application built using Visual Studio with Telerik UI for WinForms integrated. We are using the Chartview feature to show user some charts. However they are not displaying correctly and we cannot identify why.
We have set label mode to Top, it shows the label correctly for positive values but, it should display the bar lables at bottom side in case of negative values. We used radChartView control and belowbarSeries properties.
barSeries.ShowLabels = true;barSeries.LabelMode = BarLabelModes.Top;