TextBlocks

Use the TextBlock class to display text.

Setting the TextBlock.text property is the only way to show a text string. Because TextBlock inherits from GraphObject, some GraphObject properties will affect text. But there are additional text-only options regarding how that text is formatted and drawn.

In these simplistic demonstrations, the code programmatically creates a Part and adds it to the Diagram. Once you learn about models and data binding you will generally not create parts (nodes or links) programmatically.

Font and colors

The size and stylistic appearance of the text is specified by the TextBlock.font. The value may be any CSS font specifier string.

The text is drawn using the TextBlock.stroke brush. The value may be any CSS color string or a Brush. By default the stroke is "black".

You can also specify the brush to use as the background: GraphObject.background. This defaults to no brush at all, which results in a transparent background. The background is always rectangular.

In these simplistic demonstrations, the code programmatically creates a Part and adds it to the Diagram. Once you learn about models and data binding you will generally not create parts (nodes or links) programmatically.

  diagram.add(
    $(go.Part, "Vertical",
      $(go.TextBlock, { text: "a Text Block" }),
      $(go.TextBlock, { text: "a Text Block", stroke: "red" }),
      $(go.TextBlock, { text: "a Text Block", background: "lightblue" }),
      $(go.TextBlock, { text: "a Text Block", font: "bold 14pt serif" })
    ));

Sizing and Clipping

The natural size of a TextBlock is just big enough to render the text string with the given font. However the actual size of the TextBlock can be larger or smaller in either dimension. Larger dimensions result in areas with no text; smaller dimensions result in clipping.

To demonstrate this, the examples below start with a naturally sized TextBlock, followed by ones with decreasing explicit sizes. To better show the actual size of the TextBlocks below, we have given them lightgreen backgrounds.

  diagram.add(
    $(go.Part, "Vertical",
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2 }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 100, height: 33 }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 60, height: 33 }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 50, height: 22 }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 40, height: 9 })
    ));

Natural Sizing of TextBlocks Varies by Browser

Because different browsers measure canvas text differently, TextBlocks are the only objects in GoJS that may have inconsistent natural sizes between browsers or different devices. For this reason, if you need objects to measure precisely and consistently across all browsers, TextBlocks without an explicit size (GraphObject.desiredSize) should not be used to dictate the size of any objects (ie, a TextBlock with no explicit size should not be the main element of a Panel of type Panel.Auto).

Wrapping

Text can also be automatically wrapped onto additional lines. In order for wrapping to happen, the TextBlock.wrap property must not be None, and there must be some constraint on the width to be narrower than it would naturally be.

In the following examples, the first TextBlock gets its natural size, the second is limited to 50 wide but is not allowed to wrap, and the other examples are limited to the same width but are allowed to wrap.

  diagram.add(
    $(go.Part, "Vertical",
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2 }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 50, wrap: go.TextBlock.None }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 50, wrap: go.TextBlock.WrapDesiredSize }),
      $(go.TextBlock, { text: "a Text Block", background: "lightgreen", margin: 2,
                        width: 50, wrap: go.TextBlock.WrapFit })
    ));

Text Alignment

The TextBlock.textAlign property specifies where to draw the characters horizontally within the size of the TextBlock. The value must be a CSS string.

This is different than the GraphObject.alignment property, which controls where to place the object within the area allocated by the parent Panel.

  diagram.add(
    $(go.Part, "Horizontal",
      $(go.Panel, "Vertical",
        { width: 150, defaultStretch: go.GraphObject.Horizontal },
        $(go.TextBlock, { text: "textAlign: 'left'", background: "lightgreen", margin: 2,
                          textAlign: "left" }),
        $(go.TextBlock, { text: "textAlign: 'center'", background: "lightgreen", margin: 2,
                          textAlign: "center" }),
        $(go.TextBlock, { text: "textAlign: 'right'", background: "lightgreen", margin: 2,
                          textAlign: "right" })
      ),
      $(go.Panel, "Vertical",
        { width: 150, defaultStretch: go.GraphObject.None },
        $(go.TextBlock, { text: "alignment: Left", background: "lightgreen", margin: 2,
                          alignment: go.Spot.Left }),
        $(go.TextBlock, { text: "alignment: Center", background: "lightgreen", margin: 2,
                          alignment: go.Spot.Center }),
        $(go.TextBlock, { text: "alignment: Right", background: "lightgreen", margin: 2,
                          alignment: go.Spot.Right })
      )
    ));

The TextBlock.verticalAlignment property controls the vertical alignment of the glyphs within the bounds. Neither TextBlock.textAlign nor TextBlock.verticalAlignment affect the sizing of the TextBlock.

  diagram.add(
    $(go.Part, "Horizontal",
      $(go.TextBlock, { text: "verticalAlignment: Top", verticalAlignment: go.Spot.Top,
                        width: 170, height: 60, background: "lightgreen", margin: 10 }),
      $(go.TextBlock, { text: "verticalAlignment: Center", verticalAlignment: go.Spot.Center,
                        width: 170, height: 60, background: "lightgreen", margin: 10 }),
      $(go.TextBlock, { text: "verticalAlignment: Bottom", verticalAlignment: go.Spot.Bottom,
                        width: 170, height: 60, background: "lightgreen", margin: 10 })
    ));

TextAlign and Multiline or Wrapping

The TextBlock.textAlign property is useful even when the TextBlock has its natural size. This occurs when the text occupies multiple lines, whether by embedded newlines causing line breaks or by wrapping. You can control whether text starting with the first newline character is ignored by setting the TextBlock.isMultiline. By default both multiline and wrapping are enabled.

  diagram.add(
    $(go.Part, "Vertical",
      $(go.TextBlock, { text: "a Text Block\nwith three logical lines\nof text",
                        background: "lightgreen", margin: 2,
                        isMultiline: false }),
      $(go.TextBlock, { text: "a Text Block\nwith three logical lines\nof text",
                        background: "lightgreen", margin: 2,
                        isMultiline: true }),
      $(go.TextBlock, { text: "a Text Block\nwith three logical lines\nof centered text",
                        background: "lightgreen", margin: 2,
                        isMultiline: true, textAlign: "center" }),
      $(go.TextBlock, { text: "a single line of centered text that should" +
                              " wrap because we will limit the width",
                        background: "lightgreen", margin: 2, width: 80,
                        wrap: go.TextBlock.WrapFit, textAlign: "center" })
    ));

Editing

GoJS also supports the in-place editing of text by the user. You just need to set the TextBlock.editable property to true.

If you want to provide text validation of the user's input, you can set the TextBlock.textValidation property to a function. You can also provide a more customized or sophisticated text editor by setting the TextBlock.textEditor property. There is an example of text validation on the Validation intro page.

  diagram.add(
    $(go.Part,
      $(go.TextBlock,
        { text: "select and then click to edit",
          background: "lightblue",
          editable: true, isMultiline: false })
    ));
  diagram.add(
    $(go.Part,
      $(go.TextBlock,
        { text: "this one allows embedded newlines",
          background: "lightblue",
          editable: true })
    ));