Dc.js leaflet marker popup showing fields from input data
问题 I'm a dc.js novice working on a dashboard displaying information on charts and a map. I'm currently unable to display information on the marker popup window besides the default, which seems to be a point's coordinates (geo) and the number of occurrences. Current code is: var facilities = xf.dimension(function(d) { return d.geo; }); var facilitiesGroup = facilities.group().reduceCount(); dc.leafletMarkerChart("#test .map",groupname) .dimension(facilities) .group(facilitiesGroup) .width(540)