Change the Result Tabs

Find can display several different result views and visualizations for your search results. These views are available as tabs in the Find. You can modify the order that these tabs are displayed, for different roles.

To change the order of the results tabs

  1. Go to the Find home directory.

  2. Open config.json in a text editor.

  3. In the uiCustomization section, in the options object, find or add the resultViewOrder property.

  4. 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.
    related-users The related users tab, which shows users who are interested in topics related to the current search, and users designated as experts on topics related to the current search. See Configure the Related Users Tab.

    For example:

    "uiCustomization": {		
       "options": {
          "resultViewOrder": {
             "user": [ "list", "topic-map" ],
             "bi": [ "topic-map", "list", "sunburst", "trending", "table", "map", "recommendation", "related-users" ]
          },
          "enableMetaFilter": {
             "user": false,
             "bi": true
          }
       }
    }
    
  5. Restart Find to apply your configuration changes.