T
the G
I've got the following properties set for the x-axis of a line graph
Set objAxis = loGraph.Axes(oConst.chAxisPositionBottom)
'Axis Properties
With objAxis
.HasTitle = True
.Title.Caption = "Time"
.Font.Size = 2
End With
The problem is, it's reading 100s of lines in from a file and plotting the graph, and trying to output the time for each entry!
Is there a way of reducing the x-axis labels so it would show hourly (for example)
11:00 12:00 13:00
rather than trying to fit everything in between in also! (believe it or not the entries are at 10 second intervals!)
I don't want to lose the values in between though.
Set objAxis = loGraph.Axes(oConst.chAxisPositionBottom)
'Axis Properties
With objAxis
.HasTitle = True
.Title.Caption = "Time"
.Font.Size = 2
End With
The problem is, it's reading 100s of lines in from a file and plotting the graph, and trying to output the time for each entry!
Is there a way of reducing the x-axis labels so it would show hourly (for example)
11:00 12:00 13:00
rather than trying to fit everything in between in also! (believe it or not the entries are at 10 second intervals!)
I don't want to lose the values in between though.