Hi,
I want to get the current text and also the new text which is being added, and for this I am using textchangeproperty in the following manner:
HTML:
<ejs-diagram #diagram id="diagram" width="100%" height="700px" textChange="textchange()"></ejs-diagram>
COMPONENT.TS:
textChange(args: ITextEditEventArgs) {
alert("abc");
}
but is not calling when I start editing text of node on double clicking nor at the finish editing.
Please help!