Find can display several different result views and visualizations for
To enable or disable the related concepts panel
config.json
in a text editor.In the uiCustomization
section, in the options
object, find or add the resultViewOrder
property.
In the resultViewOrder
object, add the user
and bi
properties to define the behavior for each user role. For each type, set the property to an array of tabs. Find displays the specified tabs in the specified order for users with that role.
The available tabs are:
topic-map | The topic map visualizer, which displays a collection of related concepts that are related to the results generated by a search.. See Change the Maximum Number of Documents Used to Calculate a Topic Map. |
list | The results list view, which lists the search results. |
sunburst | The sunburst visualizer, which shows the parametric values in particular fields for the results of the search. |
trending | The Trending visualizer, which displays a chart of document rate against time for the values in a particular field, to show how particular topics change in popularity. See Configure the Trending Visualizer |
table | The table view, which shows the parametric value counts in a table. |
map | The map view, which displays a map with pins to show search results that have geographical information. See Configure Map Visualizations. |
recommendation | The recommendation tab, which shows search results that relate to the profiles for the current user. See Use Profiles to Provide User-Specific Content. |
For example:
"uiCustomization": { "options": { "resultViewOrder": { "user": [ "list", "topic-map" ], "bi": [ "topic-map", "list", "sunburst", "trending", "table", "map", "recommendation" ] }, "enableMetaFilter": { "user": false, "bi": true } } }
Restart Find to apply your configuration changes.
|