extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
18 lines (17 loc) • 369 B
JavaScript
/**
* @class Ext.sparkline.Shape
* @private
*/
Ext.define('Ext.sparkline.Shape', {
constructor: function (target, id, type, args) {
var me = this;
me.target = target;
me.id = id;
me.type = type;
me.args = args;
},
append: function () {
this.target.appendShape(this);
return this;
}
});