如果由 DisplayUnit 或 DisplayUnitCustom 属性指定的标志显示在数值轴上,则该值为 True。如果没有显示任何单位,则该值为 False。默认值为 True。Boolean 类型,可读写。
本示例将 myChart 中数值轴的单位设置为 500,但隐藏单位标志本身。
With myChart.Axes(xlValue)
.DisplayUnit = xlCustom
.DisplayUnitCustom = 500
.AxisTitle.Caption = "Rebate Amounts"
.HasDisplayUnitLabel = False