ExcelScript.ChartBinOptions interface
封装直方图和排列图的容器选项。
方法
get |
指定是在直方图还是直方图中启用箱溢出。 |
get |
指定是在直方图还是直方图中启用 bin 下溢。 |
get |
指定直方图或直方图的箱数。 |
get |
指定直方图或直方图的箱溢出值。 |
get |
指定直方图或直方图的箱类型。 |
get |
指定直方图或直方图的箱下溢值。 |
get |
指定直方图或直方图的箱宽度值。 |
set |
指定是在直方图还是直方图中启用箱溢出。 |
set |
指定是在直方图还是直方图中启用 bin 下溢。 |
set |
指定直方图或直方图的箱数。 |
set |
指定直方图或直方图的箱溢出值。 |
set |
指定直方图或直方图的箱类型。 |
set |
指定直方图或直方图的箱下溢值。 |
set |
指定直方图或直方图的箱宽度值。 |
方法详细信息
getAllowOverflow()
指定是在直方图还是直方图中启用箱溢出。
getAllowOverflow(): boolean;
返回
boolean
getAllowUnderflow()
指定是在直方图还是直方图中启用 bin 下溢。
getAllowUnderflow(): boolean;
返回
boolean
getCount()
指定直方图或直方图的箱数。
getCount(): number;
返回
number
getOverflowValue()
指定直方图或直方图的箱溢出值。
getOverflowValue(): number;
返回
number
getType()
getUnderflowValue()
指定直方图或直方图的箱下溢值。
getUnderflowValue(): number;
返回
number
getWidth()
指定直方图或直方图的箱宽度值。
getWidth(): number;
返回
number
setAllowOverflow(allowOverflow)
指定是在直方图还是直方图中启用箱溢出。
setAllowOverflow(allowOverflow: boolean): void;
参数
- allowOverflow
-
boolean
返回
void
setAllowUnderflow(allowUnderflow)
指定是在直方图还是直方图中启用 bin 下溢。
setAllowUnderflow(allowUnderflow: boolean): void;
参数
- allowUnderflow
-
boolean
返回
void
setCount(count)
指定直方图或直方图的箱数。
setCount(count: number): void;
参数
- count
-
number
返回
void
setOverflowValue(overflowValue)
指定直方图或直方图的箱溢出值。
setOverflowValue(overflowValue: number): void;
参数
- overflowValue
-
number
返回
void
setType(type)
setUnderflowValue(underflowValue)
指定直方图或直方图的箱下溢值。
setUnderflowValue(underflowValue: number): void;
参数
- underflowValue
-
number
返回
void
setWidth(width)
指定直方图或直方图的箱宽度值。
setWidth(width: number): void;
参数
- width
-
number
返回
void