workbook.ReportStyle
Object Description |
A report style object. Use workbook.createReportStyle(options) to create this object. A report style object is used as a parameter in the workbook.createPivot(options) method. |
Supported Script Types |
Server scripts For more information, see SuiteScript 2.x Script Types. |
Module |
|
Methods and Properties |
|
Since |
2021.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/workbook Module Script Samples. Also see Full scripts in the Tutorial: Creating a Workbook Using the Workbook API topic.
// Add additional code
...
//myReportStyle is a workbook.ReportStyle object
var myReportStyle = workbook.createReportStyle({
selectors: [measureValueSelector], // previously created workbook.MeasureValueSelector objects
rules: [rule] // previously created workbook.ReportStyleRule objects
});
...
// Add additional code