任何人都可以点我,甚至如何嵌入d3.js图形到ext.js最简单的例子? 我已经做了很多搜索的:我什至不知道这是可能的。 是这样吗? 提前致谢。
Answer 1:
什么我有,到目前为止确定结果使用的过于简化的版本:
Ext.define('desktop.controls.d3svg', {
extend: 'Ext.container.Container',
alias: 'widget.d3svg',
listeners: {
added: function() {
this.onAdded();
}
},
onAdded: function() {
// ext container has the outer and inner containers
// use id for selection of inner container for appending svg
var svg = d3.select('#' + this.id + '-innerCt').append("svg");
this.svg = svg;
},
onResize: function(width, height) {
// on the way to an example of using ext resize event and width
// and height vars
// this.svg.do_d3_resize_things.....
}
});
文章来源: How to use d3.js graphs in Ext.js?