我试图扩展here提供的示例:
from mpld3 import utils
class ClickInfo(plugins.PluginBase):
"""Plugin for getting info on click"""
JAVASCRIPT = """
mpld3.register_plugin("clickinfo", ClickInfo);
ClickInfo.prototype = Object.create(mpld3.Plugin.prototype);
ClickInfo.prototype.constructor = ClickInfo;
ClickInfo.prototype.requiredProps = ["id"];
function ClickInfo(fig, props){
mpld3.Plugin.call(this, fig, props);
};
ClickInfo.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
obj.elements().on("mousedown",
function(d, i){alert("clicked on points[" + i + "]");});
}
"""
def __init__(self, points):
self.dict_ = {"type": "clickinfo",
"id": utils.get_id(points)}
fig, ax = plt.subplots()
points = ax.scatter(np.random.rand(50), np.random.rand(50),
s=500, alpha=0.3)
plugins.connect(fig, ClickInfo(points))
我的目的是做同样的事情(点击对象时显示标签),但用barplot代替散点图。
它不能使用相同的Javascript代码:
from mpld3 import utils
class ClickInfo(plugins.PluginBase):
"""Plugin for getting info on click"""
JAVASCRIPT = """
mpld3.register_plugin("clickinfo", ClickInfo);
ClickInfo.prototype = Object.create(mpld3.Plugin.prototype);
ClickInfo.prototype.constructor = ClickInfo;
ClickInfo.prototype.requiredProps = ["id"];
function ClickInfo(fig, props){
mpld3.Plugin.call(this, fig, props);
};
ClickInfo.prototype.draw = function(){
var obj = mpld3.get_element(this.props.id);
obj.elements().on("mousedown",
function(d, i){alert("clicked on bar[" + i + "]");});
}
"""
def __init__(self, bars):
self.dict_ = {"type": "clickinfo",
"id": utils.get_id(bars)}
x = range(0,10)
y = np.random.rand(10)
fig, ax = plt.subplots()
bars = ax.bar(x, y)
plugins.connect(fig, ClickInfo(bars))
但是,我可以获得其中一个栏的工作行为。例如,对于plugins.connect(fig, ClickInfo(bars[0]))
,点击第一个栏会触发警报Javascript代码。
问题:
如何为每个栏设置相同的行为?
此外,由于我对D3和Javascript缺乏经验,对代码如何工作的简短解释将非常有帮助。任何学习的资源也是受欢迎的,因为我无法找到MPLD3教程。
答案 0 :(得分:4)
我遇到了同样的问题,我扩展了带有浮动标签的堆叠条形图的答案,你可以在这里找到:
http://nbviewer.ipython.org/gist/Iggam/416520098460b057c208
代码可以在这里找到:
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import mpld3
from mpld3 import plugins, utils
class BarLabelToolTip(plugins.PluginBase):
JAVASCRIPT = """
mpld3.register_plugin("barlabeltoolTip", BarLabelToolTip);
BarLabelToolTip.prototype = Object.create(mpld3.Plugin.prototype);
BarLabelToolTip.prototype.constructor = BarLabelToolTip;
BarLabelToolTip.prototype.requiredProps = ["ids","labels"];
BarLabelToolTip.prototype.defaultProps = {
hoffset: 0,
voffset: 10,
location: 'mouse'
};
function BarLabelToolTip(fig, props){
mpld3.Plugin.call(this, fig, props);
};
BarLabelToolTip.prototype.draw = function(){
var svg = d3.select("#" + this.fig.figid);
var objs = svg.selectAll(".mpld3-path");
var loc = this.props.location;
var labels = this.props.labels
test = this.fig.canvas.append("text")
.text("hello world")
.style("font-size", 72)
.style("opacity", 0.5)
.style("text-anchor", "middle")
.attr("x", this.fig.width / 2)
.attr("y", this.fig.height / 2)
.style("visibility", "hidden");
function mousemove(d) {
if (loc === "mouse") {
var pos = d3.mouse(this.fig.canvas.node())
this.x = pos[0] + this.props.hoffset;
this.y = pos[1] - this.props.voffset;
}
test
.attr("x", this.x)
.attr("y", this.y);
};
function mouseout(d) {
test.style("visibility", "hidden")
};
this.props.ids.forEach(function(id, i) {
var obj = mpld3.get_element(id);
function mouseover(d) {
test.style("visibility", "visible")
.style("font-size", 24)
.style("opacity", 0.7)
.text(labels[i])
};
obj.elements().on("mouseover", mouseover.bind(this))
});
objs.on("mousemove", mousemove.bind(this))
.on("mouseout", mouseout.bind(this));
}
"""
def __init__(self, ids, labels=None, location="mouse"):
self.dict_ = {"type": "barlabeltoolTip",
"ids": ids,
"labels": labels,
"location": location}
fig, ax = plt.subplots()
x = range(0,10)
y = np.random.rand(10)
bars = ax.bar(x, y)
labels = [round(bar.get_height(),2) for bar in bars]
ids = [utils.get_id(bar) for bar in bars]
plugins.connect(fig, BarLabelToolTip(ids, labels))
答案 1 :(得分:3)
你走在正确的轨道上。这是一种让你工作的方法:
from mpld3 import utils, plugins
class ClickInfo(plugins.PluginBase):
"""Plugin for getting info on click"""
JAVASCRIPT = """
mpld3.register_plugin("clickinfo", ClickInfo);
ClickInfo.prototype = Object.create(mpld3.Plugin.prototype);
ClickInfo.prototype.constructor = ClickInfo;
ClickInfo.prototype.requiredProps = ["ids"];
function ClickInfo(fig, props){
mpld3.Plugin.call(this, fig, props);
};
ClickInfo.prototype.draw = function(){
this.props.ids.forEach(function(id, i) {
var obj = mpld3.get_element(id);
obj.elements().on("mousedown",
function(d){alert("clicked on bar[" + i + "]");});
});
}
"""
def __init__(self, bars):
self.dict_ = {"type": "clickinfo",
"ids": [utils.get_id(bar) for bar in bars]}
x = range(0,10)
y = np.random.rand(10)
fig, ax = plt.subplots()
bars = ax.bar(x, y)
plugins.connect(fig, ClickInfo(bars))
你可以see it in action here。也许其他人将有时间扩展这个答案,更多地解释代码是如何工作的。