I am using d3 to make a stacked bar chart.
Thanks to this previous question I am binding data associated with a parent node to a child node using parentNode.__ data__.key.
The data is an array with one object for each bar (e.g 'likes'). Then each object contains an array of values which drive the individual rectangles per bar:
data = [{
key = 'likes', values = [
{key = 'blue-frog', value = 1},
{key = 'goodbye', value = 2}
]
}, {
key = 'dislikes, values = [
{key = 'blue-frog', value = 3},
{key = 'goodbye', value = 4}
]
}]
The chart is working fine, and so is binding the parent metric data to a child svg attribute:
// Create canvas
bars = svg.append("g");
// Create individual bars, and append data
// 'likes' are bound to first bar, 'dislikes' to second
bar = bars.selectAll(".bar")
.data(data)
.enter()
.append("g");
// Create rectangles per bar, and append data
// 'blue-frog' is bound to first rectangle, etc.
rect = bar.selectAll("rect")
.data(function(d) { return d.values;})
.enter()
.append("rect");
// Append parent node information (e.g. 'likes') to each rectangle
// per the SO question referenced above
rect.attr("metric", function(d, i, j) {
return rect[j].parentNode.__data__.key;
});
This then allows the creation of tooltips per rectangle which say things like "likes: 2." So far so good.
The problem is how to associate this same information with a click event, building on:
rect.on("click", function(d) {
return _this.onChartClick(d);
});
// or
rect.on("click", this.onChartClick.bind(this));
It's problematic because the onChartClick method needs access to the bound data (d) and the chart execution context ('this'). If it didn't I could just switch the execution context and call d3.select(this).attr("metric") within the onChartClick method.
Another idea I had was to pass the metric as an additional parameter but the trick of using function(d, i, j) here doesn't seem to work because it isn't run until a click event happens.
Can you suggest a solution?