Details
Description
Results are not being calculated appropriately causing no graph to show patient statistics. Likely cause is line 125 of Dem1Set_ctrlr.js at i2b2.Dem1Set.model.sumCounts = eval("("+hData.toJSON()+")");. Display can be rectified with i2b2.Dem1Set.model.sumCounts = eval("("+hData.toJSON+")"); or i2b2.Dem1Set.model.sumCounts = JSON.stringify(hData);; however, this still does not allow the table to display, only the patient number statistics above the table will be displayed.