Enum PivotValueDisplayType
数据透视值显示类型
枚举,用于将某个值作为另一个值的函数来显示某个轴心值的方式。
如需调用枚举,您可以调用其父类、名称和属性。例如
SpreadsheetApp.PivotValueDisplayType.PERCENT_OF_ROW_TOTAL
。
属性
属性 | 类型 | 说明 |
DEFAULT | Enum | 默认。将数据透视表值显示为实际值,而不是其他值的函数。 |
PERCENT_OF_ROW_TOTAL | Enum | 将透视值显示为相应行的总和的百分比。 |
PERCENT_OF_COLUMN_TOTAL | Enum | 将透视值显示为相应列总计值的百分比。 |
PERCENT_OF_GRAND_TOTAL | Enum | 将数据透视表值显示为占总计的百分比。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-12-02。
[null,null,["最后更新时间 (UTC):2024-12-02。"],[[["`PivotValueDisplayType` is used to control how values are displayed in a pivot table, offering options to present them as raw values or percentages relative to row, column, or grand totals."],["To utilize a specific display type, reference it using the format `SpreadsheetApp.PivotValueDisplayType.[property]`, such as `SpreadsheetApp.PivotValueDisplayType.PERCENT_OF_ROW_TOTAL` for displaying values as a percentage of the row total."],["Available display types include `DEFAULT` (displays the raw value), `PERCENT_OF_ROW_TOTAL`, `PERCENT_OF_COLUMN_TOTAL`, and `PERCENT_OF_GRAND_TOTAL`."]]],[]]