Constructs a TextBlock, which by default has no string to show; if it did, it would draw the text, wrapping if needed, in the default font using a black stroke.
Typical usage:
new go.TextBlock("Hello World", { font: "12px sans-serif", stroke: "gray" })
It is common to data-bind the text:
// A Node used as the node template, holding a single TextBlock
myDiagram.nodeTemplate =
new go.Node()
.add(
new go.TextBlock({ font: "12px sans-serif", stroke: "darkgray" })
.bind("text")
);
// It could be used with model data like this:
myDiagram.model = new go.GraphLinksModel(
[
{ key: "1", text: "First TextBlock" },
{ key: "2", text: "Second TextBlock" }
]);
Optional
text: stringThe textblock's text.
Optional
init: Partial<TextBlock>Optional initialization properties.
A newly constructed TextBlock has no string to show; if it did, it would draw the text, wrapping if needed, in the default font using a black stroke.
Optional
init: Partial<TextBlock>Optional initialization properties.
Gets or sets the an array of possible choices for a custom TextEditingTool. The value must be an array of strings.
The default value is null. For example usage, see the Custom TextEditingTool Sample.
Gets or sets whether or not this TextBlock allows in-place editing of the text string by the user with the help of the TextEditingTool. The default is false.
See also Part.textEditable.
Gets or sets the function to call if a text edit made with the TextEditingTool is invalid. The default is null.
Gets or sets how the TextBlock is displayed: Either normally or with a Horizontal or Vertical flip or both.
Possible values are Flip.None, Flip.Horizontal, Flip.Vertical, or Flip.Both. The default is Flip.None.
Gets or sets the current font settings. The font property must be a valid CSS string describing a font. The font string can accept several CSS properties but they must be in a specific order in order to render correctly across all browsers:
"font-style font-variant font-weight font-size font-family"
For example, "Italic small-caps bold 32px Georgia, Serif"
is a valid font string
using every CSS font property. Not every browser can render every font option.
For more information about CSS font syntax, see CSS fonts (mozilla.org).
If your Node sizes depend on TextBlocks, it is best to ensure any custom fonts you are using are finished loading before you load your Diagram. This will ensure nodes are sized appropriately for the initial Diagram layout.
The default font is "13px sans-serif".
Gets or sets the policy for trimming whitespace on each line of text.
Possible values are TextFormat.Trim, which trims whitespace before and after every line of text, or TextFormat.None, which will not trim any whitespace and may be useful for preformatted text. The default is TextFormat.Trim.
Gets or sets the fractional distance along the main shape of a "Graduated" Panel at which this kind of tick text should end. The default is 1; the value should range from 0 to 1.
Gets or sets the function to convert from a value along a "Graduated" Panel to a string. The default returns a string representing the value rounded to at most 2 decimals.
The function takes a number argument, a value between Panel.graduatedMin and Panel.graduatedMax, and this TextBlock. The function will return a string, the text that will appear at the value of the argument.
Note that the second argument is the TextBlock, not a particular label that would be rendered at the given value. The function, if supplied, must not have any side-effects.
Gets or sets the function to determine which values along a "Graduated" Panel will be skipped. The default is null and doesn't skip any text labels.
The function takes a number argument, a value between Panel.graduatedMin and Panel.graduatedMax, and this TextBlock. The function will return a boolean, whether the text label will be skipped at the value of the argument.
Note that the second argument is the TextBlock, not a particular label that would be rendered at the given value. The function, if supplied, must not have any side-effects.
Gets or sets the fractional distance along the main shape of a "Graduated" Panel at which this text should start. The default is 0; the value should range from 0 to 1.
Gets or sets how frequently this text should be drawn within a "Graduated" Panel, in multiples of the Panel.graduatedTickUnit. The default is 1. Any new value must be a positive integer.
Gets or sets whether or not the text displays multiple lines or embedded newlines. If this is false, all characters including and after the first newline will be omitted. The default is true.
Readonly
isGets whether the TextBlock text is truncated (overflowed) or not. This value is set during a TextBlock's measurement.
As with all read-only properties, using this property as a binding source is unlikely to be useful.
Gets or sets whether or not the text has a strikethrough line (line-through). The default is false.
Gets or sets whether or not the text is underlined. The default is false.
Readonly
lineReadonly
lineThis read-only property returns the height of a line of text in this TextBlock, not including any spacingAbove or spacingBelow.
This value may be meaningless before the TextBlock is measured.
Gets or sets the maximum number of lines that this TextBlock can display.
Value must be a greater than zero whole number or Infinity
.
The default is Infinity
.
Modifying this value may modify the computed height of the TextBlock. If maxLines is set, the value of lineCount will never be larger than maxLines.
Readonly
naturalGets or sets how text that is too long to display should be handled.
Possible values are TextOverflow.Clip and TextOverflow.Ellipsis. For Ellipsis to work, you must constrain the available size of the TextBlock in some way, such as setting wrap to Wrap.None, or limiting the number of lines with maxLines or a height constraint.
With Ellipsis, setting the wrap value to Wrap.BreakAll will allow ellipses to break partial words.
The default value is TextOverflow.Clip.
Gets or sets additional spacing above each line of text. The default is zero. The value may be negative.
This can be useful when you need to adjust the font spacing on custom fonts or monospace fonts to suit your needs.
Gets or sets additional spacing below each line of text. The default is zero. The value may be negative.
This can be useful when you need to adjust the font spacing on custom fonts or monospace fonts to suit your needs.
Gets or sets the Brush or string that describes the stroke (color) of the text that is drawn.
The default value is "black"
.
Any valid CSS string can specify a solid color, and the Brush
class can be used to specify a gradient or pattern.
More information about the syntax of CSS color strings is available at:
CSS colors (mozilla.org).
Gets or sets the TextBlock's text string. The default is an empty string. The text of a TextBlock, along with the values of font, wrap, isMultiline and sizing restrictions are what naturally determine the size of the TextBlock.
The text in textblocks can include manual line-breaks by using the character escape, \n
.
Leading and trailing whitespace is eliminated in each line of TextBlock text.
If editable is set to true, users can edit textblocks with the TextEditingTool.
Gets or sets the alignment location in the TextBlock's given space.
The only possible values are "start"
, "end"
, "left"
, "right"
, and "center"
.
Any other value is invalid.
This property is most pertinent when the TextBlock has multiple lines of text, or when the TextBlock is given a size that differs from the text's natural size (such as with desiredSize).
In left-to-right writing systems, "start"
and "left"
are synonymous, as are "end"
and "right"
.
The default is "start"
.
Gets or sets the function that is called after the TextBlock's text has been edited by the TextEditingTool.
function(textBlock, previousText, currentText)
The default value is null -- no function is called.
Gets or sets the HTMLInfo that this TextBlock uses as its text editor in the TextEditingTool. If null, the TextBlock will use the default text editor of the TextEditingTool. The default is null. The value should be set to an instance of HTMLInfo. Setting this property might not affect any ongoing text editing operation.
For example usage, see the Custom TextEditingTool Sample.
Gets or sets the predicate that determines whether or not a user-edited string of text is valid. If this is non-null, the predicate is called in addition to any TextEditingTool.textValidation predicate. See TextEditingTool.isValidText for more details.
function(textBlock, oldString, newString)
The default predicate is null, which is equivalent to simply returning true.
The function, if supplied, must not have any side-effects, and must return true or false.
Gets or sets the vertical alignment Spot of this TextBlock, used when the TextBlock has more available vertical space than it needs to draw all lines.
The default value is Spot.Top, which aligns the TextBlock to the top of its available space.
The textAlign is often used along with this property to specify where the should be positioned in its available space.
This does not affect TextBlock coordinates or bounds, it only affects where text is drawn within the given area.
Gets or sets whether the text should be wrapped if it is too long to fit on one line.
Possible values are Wrap.DesiredSize, Wrap.Fit, Wrap.BreakAll, and Wrap.None.
The default value is Wrap.DesiredSize.
Static
getGets the function that, given the TextBlock and numerical text height, computes the position to draw the baseline of a line of text in all TextBlocks.
By default this is null and default behavior returns (textHeight * 0.75)
.
This computation affects drawing only, and does not change TextBlock measurement calculations.
Static
getGets the function that, given the TextBlock and numerical text height, computes the position to draw the underline of a line of text in all TextBlocks.
By default this is null and default behavior returns (textHeight * 0.75)
.
This computation affects drawing only, and does not change TextBlock measurement calculations.
Static
isStatic
setSets the function that, given the TextBlock and numerical text height, computes the position to draw the baseline of a line of text in all TextBlocks.
This computation affects drawing only, and does not change TextBlock measurement calculations.
It is expected this method will be called before or during initialization of any Diagram.
Diagrams will not redraw when this method has been called,
and you should call Diagram.redraw()
if you are calling this method outside of your initialization.
Static
setSets the function that, given the TextBlock and numerical text height, computes the position to draw the underline of a line of text in all TextBlocks.
This computation affects drawing only, and does not change TextBlock measurement calculations.
It is expected this method will be called before or during initialization of any Diagram.
Diagrams will not redraw when this method has been called,
and you should call Diagram.redraw()
if you are calling this method outside of your initialization.
Static
Readonly
FormatStatic
Readonly
FormatStatic
Readonly
NoneStatic
Readonly
OverflowStatic
Readonly
OverflowStatic
Readonly
WrapStatic
Readonly
WrapStatic
Readonly
Wrap
A TextBlock is a GraphObject that displays a text string in a given font.
The size and appearance of the text is specified by font, which takes a well-formed CSS string as its value. The order of the CSS properties given is important for cross-browser compatibility, and should be given in this order:
"font-style font-variant font-weight font-size font-family"
For example, "Italic small-caps bold 32px Georgia, Serif" is a valid font string using every CSS font property. Note that not all browsers may support every property.
Text is drawn using the stroke brush, which may be any CSS color string or a Brush.
Some created TextBlocks:
TextBlocks typically receive a natural size based on their text and font strings, but often a width is given in order to cause the text to wrap at a certain place. In order for wrapping to occur, the wrap property must not be Wrap.None.
TextBlocks can be edited by users using the TextEditingTool. The HTMLInfo that a given TextBlock uses as its text editor can be customized by setting the textEditor property. For an example of custom text editing tool use, see the Custom TextEditingTool Sample.
For examples of TextBlock possibilities and functionality, see the Introduction page on TextBlocks.