Edit slots used in Application Dashboard

Post Reply
ABIS
Posts: 4
Joined: 25 Jan 2024, 09:24

Hey is there any way I can change the default slots/values that are being shown in the pie charts in the Application Dashboard.
Lets say I wanted to see "Delivery Model", is it possible to add this and maybe remove the once I do not use?
JohnM
Posts: 478
Joined: 17 Feb 2009, 20:19

The view picks up any enumerations set against Applications. There actually is a way to change the chart types that is a test at the moment: add a file user/appDashboard.json

The json structure is enumeration class, type, whether to show or not and what order:

Code: Select all

{"app_dashboard":[
    {"id": "Disposition_Lifecycle_Status", "type":"radar", "show":"Y", "order": 3},
    {"id": "Lifecycle_Status", "type":"radar", "show":"Y", "order": 2},
    {"id": "Codebase_Status", "type":"line", "show":"Y", "order": 3},
    {"id": "Business_Criticality", "type":"pie", "show":"Y", "order": 4},
    {"id": "distribute_costs", "type":"pie", "show":"N", "order": 5},
    {"id": "Recovery_Point_Objective", "type":"bar", "show":"Y", "order": 5},
    {"id": "Purchase_Status", "type":"bar", "show":"N", "order": 5}
    ]
}
The file path is important
Post Reply