The big elephant in the room here is that Panic’s StatusBoard did this and is now dead. They discontinued their iPad app in November, and users from all over the world are looking for something to replace it with. MagicMirror is the perfect replacement, but it lacks the most popular module: The Graph Module. When the Graph Module in Statusboard is fed just one number, it displays the number with a name, instead of the graph. I think a good solution would be to base further MMM development based on the same JSON structure that has already been established in the StatusBoard community. Examples:
{ "graph": { "title" : "IKKE BEHANDLET", "total" : true, "datasequences" : [ { "title" : "Datasupport", "datapoints" : [ { "title" : "Antall", "value" : 3 } ] } ] } }This will in StatusBoard look like this:
0_1488397034636_datasupport-ikkebehandlet.jpg
If however, the same module is used, and pointed to this JSON-file:
{ "graph" : { "title" : "Prod-Redigering : antall saker opprettet", "total" : true, "datasequences" : [ { "title" : "Uke 29", "datapoints" : [ {"title" : "Mandag", "value" : 0 }, {"title" : "Tirsdag", "value" : 4 }, {"title" : "Onsdag", "value" : 0 }, {"title" : "Torsdag" , "value" : 3 }, {"title" : "Fredag", "value" : 2 } ] } ] } }That will produce this nice Column Graph:
0_1488397213531_produke.jpg
The whitepaper still exists here: https://library.panic.com/statusboard/graph_tutorial/
If someone needs motivation to look into this, please check the comments here:
https://panic.com/blog/the-future-of-status-board/