ExtJS / Raphael可能有十字线散点图吗?

时间:2013-02-05 18:32:18

标签: charts extjs4 graphael

我想创建一个散点图并使用十字准线,如下所示:

enter image description here

是否可以将y轴移到右边?

1 个答案:

答案 0 :(得分:0)

Ext.chart.Chart是一个Ext.draw.Component,因此可以在商店加载事件中以这种方式向其表面添加精灵

var chart = this.down('chart');
var vlinesprite = { /* vertical line sprite config */ },
    hlinesprite = { /* horizontal line sprite config */ };
chart.surface.add([vlinesprite, hlinesprite]);

现在你必须准备精灵来画线。我想这将是路径精灵。