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 object describes a field selected for rows, columns, or report filters in the slice.
{ uniqueName: string, caption: string, dimensionName: string, filter: FilterObject, levelName: string, showTotals: boolean, sort: string, sortOrder: string[] }
Property/Type | Description |
---|---|
uniqueName String | The field's unique name. |
String | optional The field's caption. |
dimensionName String | optional The dimension name. |
filter FilterObject | optional Contains filtering information. |
levelName String | optional If the field is a multilevel hierarchy, the levelName allows setting a specific hierarchy level to be shown on the grid or chart
Live example.This property does not apply to report filters. |
showTotals Boolean | optional Defines whether totals are shown or hidden for the field. When set to true , totals are shown. Only for the classic (tabular) form.If showTotals is not specified, totals' visibility is defined by the options.showTotals property.To show and hide totals via UI, use the context menu. Open it by right-clicking the field header. This property does not apply to report filters. |
sort String | optional The sorting type for members. Possible values: "asc" , "desc" , and "unsorted" .Live example To learn more about sorting, check out the Sorting guide. |
sortOrder String[] | optional Overrides default ascending order for field members
Live example. To learn more about sorting, check out the Sorting guide. Only for "csv" and "json" data source types. |
Example with the FieldObject in rows and columns:
slice: { rows: [ { uniqueName: "Country", filter: { exclude: ["country.[australia]"], }, }, { uniqueName: "Status", sort: "desc", }, ], columns: [ { uniqueName: "Order Date", }, { uniqueName: "[Measures]", }, ], // Other slice properties }