Possible to change flowchart Start and End nodes

I cannot figure out a way to give a flowchart’s Start and End nodes to have another (i18n) text other than the default texts. For example, in the sample the End node is defined as:
{“key”:-2, “category”:“End”, “loc”:“175 640”, “text”:“Enjoy!”}

But, it still shows ‘End’ as the node text. How can this be changed? If not possible dynamically, maybe globally?

Apparently when we cleaned up the sample we took away the ability to specify the text to be shown in the Start and the End kinds of nodes.

Basically you just need to add a Binding on the TextBlock.text property. If you assume that the property on the node data object is named “text” as your example uses, the template would include:

          $(go.TextBlock, "End",
            { margin: 5, font: "bold 11pt Helvetica, Arial, sans-serif", stroke: lightText },
            new go.Binding("text"))

If the text were user-editable, because editable: true were included in the initialization of the TextBlock, then you’d want to do something like in the other templates of that sample:

          $(go.TextBlock, "End",
            { margin: 5, font: "bold 11pt Helvetica, Arial, sans-serif", stroke: lightText, editable: true },
            new go.Binding("text").makeTwoWay())

We’ll update the Flowchart sample for the next release. Thanks for pointing out the missing feature in the sample.