shape.setAnchor(new Rectangle());
return shape;
}
public XSLFConnectorShape createConnector(){
CTConnector sp = _spTree.addNewCxnSp();
sp.set(XSLFConnectorShape.prototype(_shapeId++));
XSLFConnectorShape shape = new XSLFConnectorShape(sp, _sheet);
shape.setAnchor(new Rectangle());
shape.setLineColor(Color.black);
shape.setLineWidth(0.75);
return shape;