我想改变标签工具提示的方向。
我想让它与顶部对齐。
我的代码是这样的:
var toolTip = 'test';
var panelExpertCharts = Ext.create('ContainerListChartExpert', {
chartList: chartList,
layout: standardLayout,
idIndicator: idIndicator,
idOrganisation: organisationObj.id,
title: chartList[0].titleExpert,
closable: true,
tabConfig: {
tooltip: toolTip
}
});
感谢您的回复。
哈姆扎。
答案 0 :(得分:0)
您好,您可以通过以下方式更改工具提示对齐
listeners: {
render: function(c) {
new Ext.ToolTip({
target: 'trackCallout',
anchor: 'right',
html: 'Test Tooltip'
});
}
}
您可以从sencha中查看一个非常好的示例here。