// Hack: Overwrite or disable it go.Diagram.prototype.addWatermark = function() {};
Unlikely. GoJS’s license agreement is standard commercial software. Reverse-engineering to remove the watermark violates Section 2.1(c) of their EULA. gojs remove watermark
Complete Guide to Removing the GoJS Watermark legally and technically // Hack: Overwrite or disable it go
// For TypeScript projects (go as any).licenseKey = "YourKeyHere"; // or (go.Diagram as any).licenseKey = "YourKeyHere"; the watermark can be suppressed.
Another variation targets the function that actually draws the text onto the canvas. This is based on the identifier 7ca11abfd7330390 , which appears in the canvas text drawing routine. By locating this function and modifying it to draw nothing, the watermark can be suppressed.