I've searched for vertical text, but was unable to find an answer on how to display vertical text in a label; eventhough there is an indication that it can be done.
I tried to use the following sub but all I can get to display a emptyness.

VB Code:
  1. Public Sub DrawYAxis()
  2.         Dim bm As Bitmap = New Bitmap(30, 50)
  3.         Dim g As Graphics = Graphics.FromImage(bm) 'Graphics object created from bitmap
  4.         Dim drawFont As New Font("Arial", 8)
  5.         Dim BlackBrush As New SolidBrush(Color.Black)
  6.         Dim What As String = "Y Axis"
  7.         g.DrawString(What, drawFont, BlackBrush, bm.Height, bm.Width)
  8.         g.TranslateTransform(CSng(bm.Width / 2), CSng(bm.Height / 2))
  9.         g.RotateTransform(90)
  10.         YAxisLabel.Image = bm
  11.         g.Dispose()
  12.     End Sub

any guide to the blind will be appreciated! Thanks.