我怎样才能在黄色部分写一些文字,只有当我点击这部分时才能看到?http://jsfiddle.net/r6p7E/14/
mouseOut: function () {
var serie = this.points;
$.each(serie, function (i, e) {
if (!this.selected) {
this.graphic.attr({
fill: '#242c4a'
});
}
else {
this.graphic.attr({
fill: '#fefe0f',
});
}
});
}`