Modules

filter

 

Objects/Functions

module (N/workbook)

SuiteScript 2.0

ChartAxis.title

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=ChartAxis.title for more information.

N/workbook Module
ChartAxis.title
Property Description: The title of the chart axis.
Type: string
Module: N/workbook Module
Parent Object: workbook.ChartAxis
Sibling Object Members: ChartAxis Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=ChartAxis.title

Example:

// Code Example 1
// Add additional code
//...
// View ChartAxis.title in a ChartDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});

log.audit({
title: 'Category ChartAxis.title = ',
details: myWorkbook.chartDefinitions[0].category.axis.title
});
log.audit({
title: 'Legend ChartAxis.title = '
details: myWorkbook.chartDefinitions[0].legend.axes[0].title
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_159060132954.html