我正在创建一个显示数据的雷达图表,它工作得很好。但是,图例中出现的标题可能非常长。现在我让它在图例中显示标题的缩短版本,但我希望如此,当用户对图例标题进行鼠标悬停时,工具提示或弹出的气泡会显示完整的标题/标签。根据我在API文档中看到的内容,我可以看到您可以为整个图表添加一个监听器,但不仅仅是在图例标题上。
但是,您可以单击图例项以使数据显示/隐藏,因此存在某种类型的侦听功能。有关如何将自定义鼠标悬停监听器添加到以下雷达图表的图例的任何想法吗?
Ext.define("COM.view.portlet.RadarChart", {
extend : "Ext.panel.Panel",
alias : "widget.myradarchart",
requires: ["Ext.chart.theme.Base", "Ext.chart.series.Series"],
initComponent: function () {
//@fixme: Why is the first radar not show x-axis lines?
Ext.apply(this, {
layout: "fit",
width: 600,
height: 300,
items: {
xtype: 'chart',
style: 'background:#fff',
theme: 'Category2',
insetPadding: 20,
animate: true,
store: 'Seoradar',
legend: {
position: "bottom"
//ADDING LISTENERS HERE DOESN'T WORK
},
axes: [{
type: "Radial",
position: "radial",
maximum: 100,
label: {
font: "11px Arial",
display : "none"
}
}],
series: [{
showInLegend : true,
showMarkers : true,
markerConfig: {
radius : 2,
size : 2
},
type : 'radar',
xField : 'name',
yField : 'site0',
style: {
opacity: 0.4
}
},{
showInLegend : true,
showMarkers : true,
type : 'radar',
xField : 'name',
yField : 'site1',
style: {
opacity: 0.4
}
}]
}
});
this.callParent(arguments);
}
});
答案 0 :(得分:1)
如果您希望将此事件从图表中删除,您可以将其从系列中推出 到图表说:
{
'type' : 'line',
'axis' : 'left',
'highlight' : true,
'listeners' : {
'itemmousedown' : function(event){
event.series.chart.fireEvent('itemmousedown', event);
}
}
}
所以在你的控制器中你可以说:
this.control({
'chart' : {
'itemmousedown' : function(event){
//do your stuff here
}
}
});
<强> !! ATTENTION !! 强>
我注意到那些mousedown事件是在UI上下文之外的另一个文件中执行的,所以我无法在事件处理程序的上下文中显示一个窗口。 我不得不通过使用setTimeout并在某处保存eventobject来解决这个问题。 我想也许这是因为在某些浏览器上SVG渲染是硬件加速。
答案 1 :(得分:0)
您可以在series
配置中添加侦听器。您可以查看哪些活动可用here。
series: [
{
type: 'column',
axis: 'left',
listeners: {
'itemmouseup': function() {
//do something
}
},
xField: 'category',
yField: 'data1'
}
]