removing pointer from legend when value === Count

This commit is contained in:
Shelby Sturgis 2015-07-16 10:53:12 -04:00
parent d1c3b14906
commit c243f8d410

View file

@ -177,7 +177,7 @@ define(function (require) {
return pointLabel !== label.toString();
}
if (label && label !== '_all') {
if (label && label !== '_all' && label !== 'Count') {
d3.select(this).style('cursor', 'pointer');
}