HABTec / public-dashboard

Open source public dashboard for DHIS2
https://habtechsolution.com
0 stars 1 forks source link

legend strategy #129

Open redet-G opened 6 days ago

redet-G commented 6 days ago
  {
    "legend": {
      "showKey": true,
      "style": "FILL",
      "set": {
        "id": "MyhCliL7JrQ"
      },
      "strategy": "FIXED"
    }
  }

image When the user predefined selected the strategy is changed to BY_DATA_ITEM meaning the legend has to be loaded from the data element. The MoH is not currently assigning legend to the dataset. Let's disable visualization whenever it is set to data element.

{
  "legend": {
    "showKey": true,
    "style": "FILL",
    "set": {
      "id": "MyhCliL7JrQ"
    },
    "strategy": "BY_DATA_ITEM"
  }
}
redet-G commented 6 days ago