We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on current master branch, if you take the example/index.html which is this:
example/index.html
var viz = d3.maptable('#vizContainer') .csv('basic.csv') .map({ path: 'ne_110m_admin_0_countries.json' }) .filters() .table() .render();
and change it to this:
var viz = d3.maptable('#vizContainer') .csv('basic.csv') .map({ path: 'ne_110m_admin_0_countries.json' }) .filters() .table({ defaultSorting: { key: "city" } }) .render();
there's a JS error in the sortColumn() function: TypeError: d3.event is null - maptable.js 2413 where 2413 is here.
sortColumn()
TypeError: d3.event is null - maptable.js 2413
The text was updated successfully, but these errors were encountered:
fix default sort per #66
33f4fa9
prep 1.5.1 release with fix to #66
96ee869
Merge pull request #67 from Packet-Clearing-House/dev-66
e41b73b
No branches or pull requests
on current master branch, if you take the
example/index.html
which is this:and change it to this:
there's a JS error in the
sortColumn()
function:TypeError: d3.event is null - maptable.js 2413
where 2413 is here.The text was updated successfully, but these errors were encountered: