How can I guarantee the multi-chart filter behavior by using three keys in the scatterplots dimensions?
as you can see in [ https://jsfiddle.net/rogeraleite/dmf3fstw/2/ ] ..specific in the lines where I declare the dimensions for the scatterplots:
dim1 = ndx.dimension(function (d) {
return [+d.x, +d.y, d.fruit];
//return [+d.x, +d.y];
})
If I comment " return [+d.x, +d.y, d.fruit]; " and use " return [+d.x, +d.y]; ", the interactions (brushing) works perfectly. However, once I try to add the third key (d.fruit) in order to color the dots in the chart, the brushing stop working.
Any idea of how to deal with it?