Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Description
The dashboard.json contains configurations that allows different display controls to be displayed on the patient dashboard.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{ "general": { "translationKey": "DASHBOARD_TAB_GENERAL_KEY", "displayByDefault": true, "maxRecentlyViewedPatients": 10, "sections": {} }, "trends": { "label": "Trends", "maxRecentlyViewedPatients": 10, "sections": {} }, "patientSummary": { "translationKey": "DASHBOARD_TAB_PATIENT_SUMMARY_KEY", "maxRecentlyViewedPatients": 10, "sections": {} } } |
Key Fields
Key | Info | Value Type |
---|---|---|
translationKey | Internationalizes the dashboard title. You can provide the key or the title itself. | Text |
label | If internationalisation internationalization is not required, then the title of the dashboard can be directly given in label. Either translationKey or a label is mandatory. | Text |
displayByDefault | trueTrue/false. Opens the dashboard tab by default if given as true. Atleast At least one dashboard should mandatorily have this as true. | True/false |
maxRecentlyViewedPatients | Configure the number of patients you want to see in "recently viewed patients" under the patient switch button | Number |
sections | Any display control can be configured in this sectionssection. To configure display controls see Display Controls | {} |
Tip | ||
---|---|---|
| ||
|