dc-tableview is an interactive chart for dc.js library that presents filtered data (by crossfilter.js) in tableview form. The method "getDatatable()" returns underlying DataTable object for advanced manipulation (https://github.com/karenpommeroy/dc-tableview#object-getdatatable).
Question: how exactly can I use this method (after initialization), in order to be able to (for example):
- Change the strings (like the "search" label)
- Format numbers in the columns
- Perform conditional formatting (like red negative numbers)
- (work around this issue* in tableview by having access to the DataTable object)
Given that:
const tableView = new dc.tableview("#tableview-container");

