Software FX Posted June 9, 2000 Report Share Posted June 9, 2000 What's happening here is that your Y-Axis remained Un-initialize as there was no values for us to determine a scale. After setting you data, you can call RecalcScale and we will set a dummy 0 to 100 scale. Or you can check for the following condition after CloseData. if (Min >= Max) { Min = 0 Max = 100 } To have your own pre-selected range. -- Frank SFX 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.