User (Legacy) Posted July 12, 2000 Report Share Posted July 12, 2000 I'm using ChartFX 98 (VB 6.0 SP3). When I have the scale and step adjust itself (default) all of the labels show up fine. With a large number of data plotted I want to space out the X-axis labels because using the auto step puts too many on. 'If we have more than 2 months, adjust the scale to show 2 dates every month If (rsData.RecordCount > 60) Then .Axis(AXIS_X).STEP = 15 Else .Axis(AXIS_X).STEP = rsData.RecordCount / 10 End If When I adjust the step to 15, the labels are spaced out perfectly (2 per month), but they are cut off when using an angle of 40. Using auto-step (i.e. not setting it) with an angle of 40 puts too many labels on, but they are not cut off... Any suggestions? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.