Flexmonster Software License Agreement (“Agreement”) has been significantly revised and is effective as of September 30, 2024.
The following modifications were made:
The modified version of Flexmonster Software License Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after September 30, 2024, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Flexmonster Software License Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license under License Model or Maintenance after the effective date of any modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This guide describes how to set custom row height and column width in Flexmonster. You can resize:
You can set custom row height and column width in the following ways:
Resize rows and columns via UI by dragging header boundaries:
If you want to preset a row height and a column width in your report, we recommend the following approach:
Your report will now contain the custom table size configurations in the tableSizes property. If needed, you can edit the configurations programmatically. To learn more, see the TableSizeObject.
You can set custom row height and column width at runtime using the setTableSizes() API call:
pivot.setTableSizes({
columns: [
{
idx: 0,
width: 160
},
// Other columns
],
rows: [
{
tuple: ["category.[cars]"],
height: 80
},
// Other rows
]
});
To see the current row height and column width, use getTableSizes().
Note If you need to set custom table sizes along with other report parts, use the setReport() API call Live example.
You can resize all rows, columns, or headers using the following CSS classes:
.fm-grid-row
and .fm-grid-row-mobile
to set the height of rows..fm-grid-column
and .fm-grid-column-mobile
to set the width of columns..fm-grid-header
and .fm-grid-header-mobile
to set the width and height of headers.