在vba中的Scatter图中设置x轴的间隔

时间:2016-03-31 11:55:40

标签: excel vba excel-vba

我试图将x轴interals设置为

rt.jar

即。 2周间隔为x轴。 但是我写的代码没有正确设置。当我运行代码时,我得到了

2016年2月1日
2016年3月22日
2016/05/11

java.sql.Connection

如何将间隔设置为2周?

1 个答案:

答案 0 :(得分:0)

知道了。以下代码将间隔设置为2周

ActiveChart.Axes(xlCategory).Select
    With ActiveChart.Axes(xlCategory)
        .MinimumScale = "2016/02/01"
        .MaximumScale = "2016/05/15"
        .BaseUnitIsAuto = True
        .MajorUnit = 7
        .MajorUnitScale = xlDays
        .MinorUnitIsAuto = True
        .Crosses = xlAutomatic
        .AxisBetweenCategories = True
        .ReversePlotOrder = False
    End With
End Sub