thienle Posted January 10, 2008 Report Share Posted January 10, 2008 I am using CustomSteps property of AxisY class. For example: my data is double[] data = { 195, 195, 194, 193, 193, 193, 192, 192, 190, 186, 192, 190 }; double[] customStep = { 193, 193, 192, 192 }; but it does not effect to the graph. Quote Link to comment Share on other sites More sharing options...
Frank Posted January 10, 2008 Report Share Posted January 10, 2008 Assuming you are assigning the customStep array to AxisY.CustomSteps, the steps are the "intervals" at which to display the labels starting at the Min value. So in your example, you will get labels at: Min + 193, Min + 193 + 193, Min + 193 + 193 + 192, etc. Quote Link to comment Share on other sites More sharing options...
thienle Posted January 11, 2008 Author Report Share Posted January 11, 2008 Thanks for your suggestion, now I can draw the graph with AxisY.CustomSteps property. 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.