Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
'e.Graphics.DrawLine(Pens.Red, 0, 0, 858, 514)
e.Graphics.RotateTransform(180)
e.Graphics.DrawString("Number of Transactions", New System.Drawing.Font("Microsoft San Serif", 15, FontStyle.Regular), Brushes.Black, 400, 250)
'e.Graphics.DrawLine(Pens.Green, 0, 504, 857, 0)
e.Graphics.DrawString("Time of Day", New System.Drawing.Font("Microsoft San Serif", 15, FontStyle.Regular), Brushes.Black, 400, 250)
End Sub
|