HasDataTable 屬性

此頁沒有內(nèi)容條目
內(nèi)容

如果圖表有數(shù)據(jù)表,則該值為 True。Boolean 類型,可讀寫。

示例

本示例使圖表數(shù)據(jù)表顯示時帶有外邊框,但無單元格邊框。

With myChart

    .HasDataTable = True

    With .DataTable

        .HasBorderHorizontal = False

        .HasBorderVertical = False

        .HasBorderOutline = True

    End With

End With