EaxMdService.setInternalGridStyles

Syntax

setInternalGridStyles(report, metadata, callback);

Parameters

report. PP.Exp.EaxAnalyzer. Express report instance.

metadata. Object. Metadata.

callback. PP.Delegate | Function. Callback function.

Description

The setInternalGridStyles method sets cell style for the entire table.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component).

// Create metadata
tableMeta = eaxAnalyzer.getMetadata();
meta = tableMeta.grid.style.internals;
// Change font size
meta.Font["@S"] = 18;
// Set style
eaxMdService.setInternalGridStyles(eaxAnalyzer, meta);
// Refresh data area
dataV = expressBox.getDataView();
dataV.refresh();

After executing the example a new font size is set for data table.

See also:

EaxMdService