Skip to content
本页内容

Top (属性)

返回或设置一个 float 值,它代表从对象的上边缘到工作表第一行顶部或图表上的图表区顶部的距离(以磅为单位)。

示例

python
#本示例显示图表工作表 Chart1 中数值轴上的单位标签上边缘到图表区顶部的距离
def test():
    displayUnitLabel = Application.Charts.Item("Chart1").ChartObjects(1).Chart.Axes(xlValue).DisplayUnitLabel
    print(displayUnitLabel.Top)
python
#下例将 Sheet1 上的第一个图表数值轴上的单位标签上边缘到图表区顶部的距离设置为50磅
def test():
    displayUnitLabel = Application.Worksheets.Item("Sheet1").ChartObjects(1).Chart.Axes(xlValue).DisplayUnitLabel
    displayUnitLabel.Top = 50