Flexmonster supports creating multilevel hierarchies from non-hierarchical data out of the box. To use this feature for the custom data source API, you need to handle certain request scenarios on your server.
This guide describes how to support multilevel hierarchies on your server and configure them in the component.
Hierarchies are composed on the client side while the server's task is to filter them. For this purpose, your back end has to implement advanced hierarchical filters.
Flexmonster sends filters in /members and /select requests. The filters' structure depends on the custom data source API version implemented by your server (see how to check your version):
If the version sent in the /handshake response is 2.8.22
or later, your server should support a filter structure described by the FilterGroupObject.
In version 2.8.5, the FilterObject describes the structure of the filters sent by the component.
The include.filter
and exclude.filter
properties of the FilterObject are responsible for filtering hierarchical data. Therefore, implement them to enable the support of multilevel hierarchies on your server.
When the server implements hierarchical filters, it should inform the component about that.
For this purpose, set the advanced property of the /fields request to true
. The component will ignore multilevel hierarchies if the advanced
property is set to false
.
The component sends the additional /select request when the levelName
property is defined in the slice. This request extracts members from the hierarchy level specified in levelName
.
If you need the levelName
property in your slice, handle the /select request for loading the required hierarchy levels.
There are two ways to compose multilevel hierarchies:
The MappingObject is responsible for grouping data into hierarchies. Specify hierarchy
and parent
properties to structure the data.
The example below illustrates how to compose multilevel hierarchies in the report. Here, we create the "Item"
hierarchy with the "Category"
field as a first level and the "Color"
field as a second level:
report: { dataSource: { type: "api", url: "your_url", index: "your_index", mapping: { "Category": { type: "string", hierarchy: "Item" }, "Color": { type: "string", hierarchy: "Item", parent: "Category" } } }, slice: { // your slice } }
See a live example on JSFiddle.
As an alternative to the MappingObject, you can configure hierarchies right in the response to the /fields request. To do so, specify fields.hierarchy
and fields.parent
properties.
Here is an example of a /fields response where the "Category"
and "Color"
fields are grouped under the "Item"
hierarchy (with "Category"
as the top level of the hierarchy):
{ "fields":[ { "uniqueName": "Category", "type": "string", "hierarchy": "Item" }, { "uniqueName": "Color", "type": "string", "hierarchy": "Item", "parent": "Category" }, ... ], "aggregations":{ ... }, "filters":{ ... } }
Now run your project and open the webpage with Flexmonster - multilevel hierarchies should appear in the component.
To find out which version of the custom data source API your server implements, you can use the /handshake request. There are two possible options:
You may be interested in the following articles: