Mxgraph 如何以编程方式在形状内添加文本元素?

Mxgraph How to add text element programmatically inside shape?

我想在任何形状内添加一个文本元素。我可以使用以下代码以编程方式添加占位符,但无法移动只能更改样式的文本。我想标签应该移动到任何位置。

var applyBtn = mxUtils.button(mxResources.get('apply'), function()
    {
        try
        {
            ui.hideDialog.apply(ui, arguments);

            // Clones and updates the value
            value = value.cloneNode(true);
            var removeLabel = false;
            for (var i = 0; i < names.length; i++)
            {
                if (texts[i] == null)
                {
                    value.removeAttribute(names[i]);
                }
                else
                {
                    value.setAttribute(names[i], texts[i].value);
                    //console.log(names[i]+"==="+texts[i].value);
                    removeLabel = removeLabel || (names[i] == 'placeholder' &&
                        value.getAttribute('placeholders') == '1');
                }
            }

            // Removes label if placeholder is assigned
            if (removeLabel)
            {
                value.removeAttribute('label');
            }
            // set booth id here
            value.setAttribute('label',value.getAttribute('booth_number'));
            graph.getModel().setValue(cell, value);
        }
        catch (e)
        {
            mxUtils.alert(e);
        }
    });

输出

需要

提前致谢!

看起来设置 graph.vertexLabelsMovable = true; 就是您要查找的内容。

基于this example (code here)