ExcelScript.ChartDataTable interface
表示图表的数据表对象。
方法
get |
表示图表数据表的格式,其中包括填充、字体和边框格式。 |
get |
指定是否显示数据表的水平边框。 |
get |
指定是否显示数据表的图例键。 |
get |
指定是否显示数据表的边框。 |
get |
指定是否显示数据表的垂直边框。 |
get |
指定是否显示图表的数据表。 |
set |
指定是否显示数据表的水平边框。 |
set |
指定是否显示数据表的图例键。 |
set |
指定是否显示数据表的边框。 |
set |
指定是否显示数据表的垂直边框。 |
set |
指定是否显示图表的数据表。 |
方法详细信息
getFormat()
getShowHorizontalBorder()
指定是否显示数据表的水平边框。
getShowHorizontalBorder(): boolean;
返回
boolean
getShowLegendKey()
指定是否显示数据表的图例键。
getShowLegendKey(): boolean;
返回
boolean
getShowOutlineBorder()
指定是否显示数据表的边框。
getShowOutlineBorder(): boolean;
返回
boolean
getShowVerticalBorder()
指定是否显示数据表的垂直边框。
getShowVerticalBorder(): boolean;
返回
boolean
getVisible()
指定是否显示图表的数据表。
getVisible(): boolean;
返回
boolean
setShowHorizontalBorder(showHorizontalBorder)
指定是否显示数据表的水平边框。
setShowHorizontalBorder(showHorizontalBorder: boolean): void;
参数
- showHorizontalBorder
-
boolean
返回
void
setShowLegendKey(showLegendKey)
指定是否显示数据表的图例键。
setShowLegendKey(showLegendKey: boolean): void;
参数
- showLegendKey
-
boolean
返回
void
setShowOutlineBorder(showOutlineBorder)
指定是否显示数据表的边框。
setShowOutlineBorder(showOutlineBorder: boolean): void;
参数
- showOutlineBorder
-
boolean
返回
void
setShowVerticalBorder(showVerticalBorder)
指定是否显示数据表的垂直边框。
setShowVerticalBorder(showVerticalBorder: boolean): void;
参数
- showVerticalBorder
-
boolean
返回
void
setVisible(visible)
指定是否显示图表的数据表。
setVisible(visible: boolean): void;
参数
- visible
-
boolean
返回
void