ExcelScript.ChartBinOptions interface

封装直方图和排列图的容器选项。

方法

getAllowOverflow()

指定是在直方图还是直方图中启用箱溢出。

getAllowUnderflow()

指定是在直方图还是直方图中启用 bin 下溢。

getCount()

指定直方图或直方图的箱数。

getOverflowValue()

指定直方图或直方图的箱溢出值。

getType()

指定直方图或直方图的箱类型。

getUnderflowValue()

指定直方图或直方图的箱下溢值。

getWidth()

指定直方图或直方图的箱宽度值。

setAllowOverflow(allowOverflow)

指定是在直方图还是直方图中启用箱溢出。

setAllowUnderflow(allowUnderflow)

指定是在直方图还是直方图中启用 bin 下溢。

setCount(count)

指定直方图或直方图的箱数。

setOverflowValue(overflowValue)

指定直方图或直方图的箱溢出值。

setType(type)

指定直方图或直方图的箱类型。

setUnderflowValue(underflowValue)

指定直方图或直方图的箱下溢值。

setWidth(width)

指定直方图或直方图的箱宽度值。

方法详细信息

getAllowOverflow()

指定是在直方图还是直方图中启用箱溢出。

getAllowOverflow(): boolean;

返回

boolean

getAllowUnderflow()

指定是在直方图还是直方图中启用 bin 下溢。

getAllowUnderflow(): boolean;

返回

boolean

getCount()

指定直方图或直方图的箱数。

getCount(): number;

返回

number

getOverflowValue()

指定直方图或直方图的箱溢出值。

getOverflowValue(): number;

返回

number

getType()

指定直方图或直方图的箱类型。

getType(): ChartBinType;

返回

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)

指定直方图或直方图的箱类型。

setType(type: ChartBinType): void;

参数

返回

void

setUnderflowValue(underflowValue)

指定直方图或直方图的箱下溢值。

setUnderflowValue(underflowValue: number): void;

参数

underflowValue

number

返回

void

setWidth(width)

指定直方图或直方图的箱宽度值。

setWidth(width: number): void;

参数

width

number

返回

void