0
頁上使用dc.dataCount計數其他D3排行榜dc.js我顯示過濾和總的行數與dc.dataCount:dc.js:
dc.dataCount(".dc-data-count", "charts")
.dimension(data_cf)
.group(all);
和
<div class="dc-data-count">
<strong class="filter-count"></strong> selected out of <strong class="total-count"></strong> records
在同一頁上,我繪製了一張d3圓環圖。在這個圖表中,我想顯示過濾器數量(更新爲應用過濾器)以及其他計算,例如當前選擇中的值的總和。考慮到dc.dataCount是由div類訪問的,我不知道如何訪問該數字以精確放置在我的圓環圖中。
如何將dc.dataCount或其他分組的值傳遞給d3對象?
謝謝!