User (Legacy) Posted November 6, 2003 Report Share Posted November 6, 2003 I'm having trouble turning off the X Axis tickmarks. This is using ChartFX Client Server ver 5.0.10.4. There are labels for each of the series value points. The resulting graph has both the minor and major tickmarks on the X axis. Is there some way that I can get tickmarks only between the axis labels? With ChartFX1.Axis(AXIS_X) .TickMark = 0 'None .MinorTickMark = 1 'Outside .Step = 1 .MinorStep = .5 .Label(0) = "1" .Label(1) = "2" .Label(...) = "..." End With Regards, James Quote Link to comment Share on other sites More sharing options...
Software FX Posted November 7, 2003 Report Share Posted November 7, 2003 No. The minor tickmarks will draw at the axis label as well if the MinorStep is such that the values will match. In other words the Minor Tickmarks will display at CONSTANT intervals. -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
User (Legacy) Posted November 7, 2003 Author Report Share Posted November 7, 2003 Thanks. But I did eventually find out how to accomplish this. I ended up setting the XAxis 'Style' property to include AS_CENTERED. That took care if it. James "SoftwareFX Support" <support@softwarefx.com> wrote in message news:0vdDvcUpDHA.1856@WEBSERVER1... > No. The minor tickmarks will draw at the axis label as well if the MinorStep > is such that the values will match. In other words the Minor Tickmarks will > display at CONSTANT intervals. > > -- > 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.