User (Legacy) Posted October 4, 2001 Report Share Posted October 4, 2001 I am having a lot of trouble with this. What I have is 1024 data points, evenly spaced. I would like the values on the xaxis to read "-10","-5","0","5","10". How can I pull this off? Quote Link to comment Share on other sites More sharing options...
Software FX Posted October 5, 2001 Report Share Posted October 5, 2001 This should do it: ChartFX1.Axis(AXIS_X).FirstLabel = 1 ChartFX1.Axis(AXIS_X).Min = -10 ChartFX1.Axis(AXIS_X).Step = 5 Note: If you have X-values assign remove the FirstLabel assignment. -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
Software FX Posted October 5, 2001 Report Share Posted October 5, 2001 This should do it: ChartFX1.Axis(AXIS_X).FirstLabel = 1 ChartFX1.Axis(AXIS_X).Min = -10 ChartFX1.Axis(AXIS_X).Step = 5 Note: If you have X-values assign remove the FirstLabel assignment. -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.