これは ExtJS Shape Classです:
Ext.define('Ext.chart.Shape', {
singleton: true,
circle: function (surface, opts) {
return surface.add(Ext.apply({
type: 'circle',
x: opts.x,
y: opts.y,
stroke: null,
radius: opts.radius
}, opts));
},
...
});
このクラスにメソッドを追加したい。例えば:
myCircle: function (surface, opts) {
return ...
},
これどうやってするの?