User (Legacy) Posted March 8, 2004 Report Share Posted March 8, 2004 If you run the following code for 6.2 vs. 6.0 you will observe that the alignment is messed up with 6.2 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim n As Integer = 0 Dim y(12) As Integer For n = 0 To 11 y(n) = n Next Chart1.DataSource = y Me.Chart1.AxisX.LabelAngle = CType(90, Short) 'Me.Chart1.AxisX.PixPerUnit = 10 Dim myStep As Double() = {1} Me.Chart1.AxisX.CustomSteps = myStep End Sub 6.2: BAD 6.0: GOOD Bob Hall Link to comment Share on other sites More sharing options...
Software FX Posted March 9, 2004 Report Share Posted March 9, 2004 I was able to reproduce the problem using your code. Thank you for reporting this problem, we are currently working on correcting it and it should be fixed in the next SP. Check our support site in a few days for an status update on this issue. -- FP Software FX Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.