A Diagram uses two major coordinate systems when drawing Parts: document coordinates and view coordinates.
Furthermore each Panel within a Part has its own coordinate system that its elements use.
All coordinate systems in GoJS have Points with increasing values of X going rightwards and increasing values of Y going downwards.
Document and View coordinates
The Part.location and GraphObject.actualBounds and GraphObject.position of Parts are in document coordinates.
Thus the Point that may be saved for a Node's location in the model's node data object are normally in document coordinates:
These document coordinates are unchanging when the user scrolls or zooms the diagram.
The union of all of the Nodes and Links in a Diagram form the Diagram.documentBounds.
This Rect has values that are in document coordinates.
Depending on where the Nodes and Links are, the document bounds may cover a very large area.
The range of the document bounds might be entirely positive x and y values,
or that might be entirely negative, or more likely they may cover both negative and positive values.
But a Part with a Part.location of (0, 0) in document coordinates is not always drawn
at the top-left corner of the HTML Div element that the user sees in the page.
When the user scrolls the diagram the part will need to be drawn elsewhere on the canvas.
And if the user zooms in to make the parts appear larger, the parts will be drawn at different points in the canvas.
Yet the Part.location does not change value as the user scrolls or zooms the diagram.
The viewport is the area of the document that is visible in the canvas.
That area is available as the Diagram.viewportBounds.
Note that the viewport bounds is in document coordinates, not in view coordinates!
The top-left corner of the viewport is (0,0) in view coordinates but is at Diagram.position in document coordinates.
The bottom-right corner of the viewport is at the canvas's (width,height) in view coordinates.
The bottom-right corner of the viewport in document coordinates depends on the Diagram.scale.
Points in the canvas are in view coordinates, which are independent of document coordinates.
View coordinates are distances from the top-left corner of the canvas in device-independent pixels.
The differences between document coordinates and view coordinates are primarily controlled by two Diagram properties:
Diagram.position and Diagram.scale.
Scrolling and panning change the Diagram.position.
Zooming in or out changes the Diagram.scale.
You can also convert between coordinate systems by calling Diagram.transformDocToView and Diagram.transformViewToDoc.
However very few properties or method arguments or return values are in view coordinates --
almost everything is in document coordinates or in panel coordinates.
As an example of showing the viewport in the context of the whole document, an Overview does exactly that.
Take a look at the overview that is in the Org Chart sample.
The overview shows the whole document of the main diagram.
The magenta box shows the main diagram's viewport within the whole document.
As you scroll or pan the main diagram, the viewport moves.
As you zoom out, the viewport gets larger.
To better understand the difference between document and viewport coordinates, look at this diagram:
diagram.nodeTemplate =
$(go.Node, "Auto",
{ scale : 1.3},
new go.Binding("location", "loc", gridPointParse),
new go.Binding("scale", "scale"),
{ locationSpot: go.Spot.Center, portId: "NODE" },
$(go.Shape, "RoundedRectangle",
{ fill: "white", portId: "SHAPE" },
new go.Binding("fill", "color"),
new go.Binding("strokeWidth", "strokeW")),
$(go.TextBlock,
{ margin: 4, portId: "TEXTBLOCK" },
new go.Binding("text", "text"),
new go.Binding("stroke", "textColor"))
);
diagram.linkTemplate =
$(go.Link,
$(go.Shape, { stroke: "darkgray", strokeWidth: 2 }),
$(go.Shape, { toArrow: "Standard", stroke: "darkgray", fill: "darkgray" })
);
// colors
const docGridStroke = "rgba(70, 130, 180, 0.5)";
const viewGridStroke = "rgba(255, 128, 128, 1)";
const commentStroke = "brown";
const cellSide = 20; // side length of one grid cell
const cellSize = new go.Size(cellSide * 5, cellSide * 5);
const pointSize = 7;
function gridSizeParse(size) {
if (!(size instanceof go.Size)) {
size = go.Size.parse(size);
}
size.setTo(size.width * cellSide, size.height * cellSide);
return size;
}
function gridPointParse(point) {
if (!(point instanceof go.Point)) {
point = go.Point.parse(point);
}
point.setTo(point.x * cellSide, point.y * cellSide);
return point;
}
function LabelledPoint(x, y, label) {
return {
x: x,
y: y,
label: label
}
}
diagram.nodeTemplateMap.add("Description", // Template for comment node
$(go.Node, "Auto",
new go.Binding("location", "loc", gridPointParse),
new go.Binding("scale", "scale"),
{ locationSpot: go.Spot.Center, portId: "NODE" },
$(go.Shape, "RoundedRectangle",
{ fill: "white", portId: "SHAPE" },
new go.Binding("fill", "color"),
new go.Binding("strokeWidth", "strokeW")),
$(go.Panel, "Vertical",
$(go.TextBlock,
{font: "bold 11pt sans-serif", margin: new go.Margin(3, 0, 0, 0)},
new go.Binding("text", "header"),
new go.Binding("stroke", "textColor")),
$(go.TextBlock,
{ margin: 3, portId: "TEXTBLOCK" },
new go.Binding("text", "text"),
new go.Binding("stroke", "textColor"))
)
));
diagram.nodeTemplateMap.add("DeltaDescription", // Template for comment node
$(go.Node, "Auto",
new go.Binding("location", "loc", gridPointParse),
new go.Binding("scale", "scale"),
{ locationSpot: go.Spot.Center, portId: "NODE" },
$(go.Shape, "RoundedRectangle",
{ fill: "white", portId: "SHAPE" },
new go.Binding("fill", "color"),
new go.Binding("strokeWidth", "strokeW")),
$(go.Panel, "Vertical",
$(go.TextBlock,
{font: "bold 11pt sans-serif", margin: new go.Margin(3, 0, 0, 0)},
new go.Binding("text", "header"),
new go.Binding("stroke", "textColor")),
$(go.TextBlock,
{ margin: 3, portId: "TEXTBLOCK", alignment: go.Spot.Left },
new go.Binding("text", "text"),
new go.Binding("stroke", "textColor")),
$(go.TextBlock,
{ margin: 3, portId: "TEXTBLOCK", font: "italic 10pt sans-serif" },
new go.Binding("text", "desc"),
new go.Binding("stroke", "textColor"))
)
));
diagram.nodeTemplateMap.add("Point", // template for denoting points on the grid
$(go.Node, "Vertical",
{ movable: false },
new go.Binding("location", "point", function gridPointLocation(point) {
label = point.label;
// measure the longest line's width
textLines = label.split("\n");
width = 0
textLines.forEach(text => {
const textBlock = $(go.TextBlock, { text: text, font: "bold 10pt sans-serif"});
if (textBlock.naturalBounds.right > width) {
width = textBlock.naturalBounds.right;
}
});
// text block with entire string to measure height
const textBlock = $(go.TextBlock, { text: label, font: "bold 10pt sans-serif" });
point = new go.Point(point.x, point.y);
// convert from grid coordinates to diagram coordinates
gridPointParse(point);
// offset
point.setTo(point.x - width / 2, point.y - pointSize / 2 - textBlock.naturalBounds.bottom); // align to center of circle to intersection instead of top left corner
return point;
}),
$(go.TextBlock,
{position: new go.Point(0, -pointSize - 7), textAlign: "center", font : "bold 10pt sans-serif"},
new go.Binding("text", "point", function getLabel(point) {
return point.label;
}), new go.Binding("margin", "margin")),
$(go.Shape,
"Circle",
{width: pointSize, height: pointSize, alignment: go.Spot.Center})
));
diagram.linkTemplateMap.add("Comment", // Template for links from comments
$(go.Link,
{ curve: go.Curve.Bezier },
new go.Binding("curviness"),
new go.Binding("fromSpot", "fromSpot"),
new go.Binding("toSpot", "toSpot"),
$(go.Shape, { stroke: commentStroke },
new go.Binding("stroke", "stroke")),
$(go.Shape, { toArrow: "OpenTriangle", stroke: commentStroke },
new go.Binding("stroke", "stroke"))
));
diagram.groupTemplateMap.add("Grid",
$(go.Group, "Position",
{ movable: false },
$(go.Shape, "Rectangle", { fill: "transparent", strokeWidth: 2},
new go.Binding("fill", "fill"),
new go.Binding("stroke", "border"),
new go.Binding("desiredSize", "size", gridSizeParse).makeTwoWay(go.Size.stringify)),
$(go.Panel, "Grid",
{ name: "DOCGRID", desiredSize: cellSize, gridCellSize: new go.Size(cellSide, cellSide) },
new go.Binding("desiredSize", "size", gridSizeParse).makeTwoWay(go.Size.stringify),
new go.Binding("gridCellSize", "cell", go.Size.parse).makeTwoWay(go.Size.stringify),
$(go.Shape, "LineV",
new go.Binding("stroke")),
$(go.Shape, "LineH",
new go.Binding("stroke"))
),
new go.Binding("location", "loc", gridPointParse)
));
diagram.initialContentAlignment = go.Spot.Center;
const model = new go.GraphLinksModel();
model.linkFromPortIdProperty = "fPID";
model.linkToPortIdProperty = "tPID"
model.nodeDataArray = [
{ key: "docGrid", isGroup: true, category: "Grid", stroke: docGridStroke, fill: "transparent", size: "24 20", border: docGridStroke },
{ key: "viewGrid", isGroup: true, group: "docGrid", category: "Grid", fill: "rgb(248,248,248)",stroke: viewGridStroke, size: "13.7 9.95", loc: "5.8 5.2", cell: "25 25", border: viewGridStroke},
{ key: "alpha", group: "docGrid", text: "Alpha", loc: "1.95 6.95"},
{ key: "beta", group: "docGrid", text: "Beta", loc: "12.4 1.25"},
{ key: "gamma", group: "docGrid", text: "Gamma", loc: "10 7.95"},
{ key: "delta", group: "docGrid", text: "Delta", loc: "14.5 11.95"},
{ key: "epsilon", group: "docGrid", text: "Epsilon", loc: "7.9 17.95"},
{ key: "zeta", group: "docGrid", text: "Zeta", loc: "12.35 18.7"},
{ key: "eta", group: "docGrid", text: "Eta", loc: "22.5 11.95"},
{ key: "point1", group: "docGrid", category: "Point", point: LabelledPoint(5.8, 5.2, "(300, 250) Document Coordinates\n(0, 0) Viewport Coordinates")},
{ key: "point2", group: "docGrid", category: "Point", point: LabelledPoint(19.3, 14.9, "(850, 650) Document Coordinates\n(550, 400) Viewport Coordinates"), margin: new go.Margin(0, 0, 4, 0)},
{ key: "point1", group: "docGrid", category: "Point", point: LabelledPoint(0, 0, "(0, 0) Document Coordinates")},
{ key: "point1", group: "docGrid", category: "Point", point: LabelledPoint(24, 20, "(1200, 1000) Document Coordinates")},
{ key: "viewportDesc", category: "Description", header: "Viewport", text: "position: (300, 250)\nviewportBounds: (550, 400)\nscale: 1.25", textColor: "brown", loc: "0 17"},
{ key: "documentDesc", category: "Description", header: "Document", text: "documentBounds: (1200, 1000)\npadding: (5, 5, 5, 5)", textColor: "rgb(50, 120, 160)", loc: "22 -3"},
{ key: "deltaDesc", category: "DeltaDescription", header: "Delta", text: "location: (650, 550)", desc: "Location is in document\ncoordinates, and does not\nchange with viewport\nmovement or scaling.", textColor: "black", loc: "26 6"}
];
model.linkDataArray = [
{ to: "viewGrid", from: "viewportDesc", category: "Comment", stroke: "brown"},
{ to: "docGrid", from: "documentDesc", category: "Comment", stroke: "rgb(50, 120, 160)"},
{ to: "delta", from: "deltaDesc", category: "Comment", stroke: "black", curviness: -10},
{ to: "gamma", from: "alpha"},
{ to: "gamma", from: "beta"},
{ to: "delta", from: "gamma"},
{ to: "epsilon", from: "delta"},
{ to: "zeta", from: "delta"},
{ to: "eta", from: "delta"}
];
diagram.model = model;
// Formatting
function headerStyle() {
return {
margin: 3,
font: "bold 12pt sans-serif",
minSize: new go.Size(140, 16),
maxSize: new go.Size(120, NaN),
textAlign: "center"
};
}
function textStyle() {
return {
margin: 3,
font: "italic 10pt sans-serif",
minSize: new go.Size(16, 16),
maxSize: new go.Size(160, NaN),
textAlign: "left"
};
}
Coordinate systems example
This example shows three Parts at three different locations in document coordinates.
Pass the mouse over each of the parts to see where those locations are in view coordinates.
Initially you will see that the only difference between document and view coordinates are a constant offset.
That offset is due to the Diagram.padding that puts a little space between the edge of the canvas and
the edge of where the diagram's objects are.
It is also due to Part.locationSpot having the location be at the center of the "+" Shape,
not at the top-left corner of the whole Part.
// read-only to avoid accidentally moving any Part in document coordinates
diagram.isReadOnly = true;
diagram.nodeTemplate =
new go.Part({ // no links or grouping, so use the simpler Part class instead of Node
locationSpot: go.Spot.Center, locationObjectName: "SHAPE",
layerName: "Background",
mouseOver: (e, obj) => showPoint(obj.part.location),
click: (e, obj) => showPoint(obj.part.location)
})
.bind("location", "loc", go.Point.parse)
.add(
new go.Shape("PlusLine", { name: "SHAPE", width: 8, height: 8 }),
new go.TextBlock({ position: new go.Point(6, 6), font: "8pt sans-serif" })
.bind("text", "loc")
);
diagram.model.nodeDataArray = [
{ loc: "0 0" },
{ loc: "100 0" },
{ loc: "100 50" }
];
function showPoint(loc) {
const docloc = diagram.transformDocToView(loc);
const elt = document.getElementById("Message1");
elt.textContent = "Selected node location,\ndocument coordinates: " + loc.x.toFixed(2) + " " + loc.y.toFixed(2) +
"\nview coordinates: " + docloc.x.toFixed(2) + " " + docloc.y.toFixed(2);
}
// make accessible to the HTML buttons:
myDiagram = diagram;
Then try scrolling or zooming in and looking at the locations of those parts in view coordinates.
Zooming in increases the Diagram.scale by a small factor.
That changes the locations in view coordinates, even though the locations in document coordinates did not change.
To "move" a node one must change its GraphObject.position or Part.location in document coordinates.
To "scroll" a diagram one must change the Diagram.position.
Either way will cause a node to appear at a different point in the viewport.
Document bounds
All of the Parts of a diagram have positions and sizes (i.e. their GraphObject.actualBounds) in document coordinates.
The union of all of those parts' actualBounds constitutes the Diagram.documentBounds.
If all of the parts are close together, the document bounds might be small.
If some or all of the parts are far apart from each other, the document bounds might be large,
even if there are only two parts or if there is just one really large part.
The Diagram.documentBounds value is independent of the Diagram.viewportBounds.
The former only depends on the bounds of the parts; the latter only depends on the size of the canvas and the diagram's position and scale.
Diagram.computeBounds, which is responsible for the bounds computation,
also adds the Diagram.padding Margin so that no Parts appear directly up against the edge of the diagram when scrolled to that side.
You may want to keep some parts, particularly background decorations, from being included in the document bounds computation.
Just set Part.isInDocumentBounds to false for such parts.
The diagram does not compute a new value for Diagram.documentBounds immediately
upon any change to any part or the addition or removal of a part.
Thus the Diagram.documentBounds property value may not be up-to-date until after a transaction completes.
If you do not want the Diagram.documentBounds to always reflect the sizes and locations of all of the nodes and links,
you can set the Diagram.fixedBounds property.
However if there are any nodes that are located beyond the fixedBounds, the user may be unable to scroll the diagram to see them.
If you want to be notified whenever the document bounds changes, you can register a "DocumentBoundsChanged" DiagramEvent listener.
Furthermore, scrolling may happen automatically as nodes or links are added to or removed from or change visibility in the diagram.
Also, zooming will typically result in scrolling as well.
Diagram.scrollMargin allows the user to scroll into empty space at the edges of the viewport,
when the document bounds (including its Diagram.padding margin) is greater than the viewport bounds.
This can be useful when users need extra space at the edges of a Diagram, for instance to
have an area to create new nodes with the ClickCreatingTool.
Diagram.padding is added as if part of the document bounds,
whereas Diagram.scrollMargin makes sure you can scroll to empty space beyond the document bounds.
Because of this, Diagram.scrollMargin does not create additional scrollable empty space if none is needed to scroll the margin
distance beyond, such as when the document bounds are very small in the viewport.
Below is a Diagram with Diagram.scrollMargin set to 100.
As you drag to the boundary, you will find the additional space created by the margin.
diagram.grid =
new go.Panel("Grid")
.add(
new go.Shape("LineH", { stroke: "gray", strokeWidth: 0.5 }),
new go.Shape("LineH", { stroke: "darkslategray", strokeWidth: 1.5, interval: 10 }),
new go.Shape("LineV", { stroke: "gray", strokeWidth: 0.5 }),
new go.Shape("LineV", { stroke: "darkslategray", strokeWidth: 1.5, interval: 10 })
);
diagram.scrollMargin = 100;
diagram.nodeTemplate =
new go.Node("Auto")
.add(
new go.Shape("RoundedRectangle")
.bind("fill", "color"),
new go.TextBlock({ margin: 3 })
.bind("text", "key")
);
const nodes = [];
for (let i = 0; i < 99; i++) {
nodes.push({ key: "Alpha", color: "lightblue" });
}
diagram.model = new go.GraphLinksModel(nodes);
Diagram.positionComputation and Diagram.scaleComputation allow you to determine what positions and scales are acceptable to be scrolled to.
For instance, you could allow only integer position values, or only allow scaling to the values of 0.5, 1, or 2.
The Scroll Modes sample displays all the code for the example below,
which lets you toggle these three properties.
diagram.minScale = 0.25;
diagram.grid =
new go.Panel("Grid")
.add(
new go.Shape("LineH", { stroke: "gray", strokeWidth: 0.5 }),
new go.Shape("LineH", { stroke: "darkslategray", strokeWidth: 1.5, interval: 10 }),
new go.Shape("LineV", { stroke: "gray", strokeWidth: 0.5 }),
new go.Shape("LineV", { stroke: "darkslategray", strokeWidth: 1.5, interval: 10 })
);
diagram.toolManager.draggingTool.isGridSnapEnabled = true;
diagram.undoManager.isEnabled = true;
diagram.nodeTemplate =
new go.Node("Auto")
.add(
new go.Shape("RoundedRectangle")
.bind("fill", "color"),
new go.TextBlock({ margin: 3 })
.bind("text")
);
// create the model data that will be represented by Nodes and Links
diagram.model = new go.GraphLinksModel(
[
{ key: 1, text: "Alpha", color: "lightblue" },
{ key: 2, text: "Beta", color: "orange" },
{ key: 3, text: "Gamma", color: "lightgreen" },
{ key: 4, text: "Delta", color: "pink" }
],
[
{ from: 1, to: 2 },
{ from: 1, to: 3 },
{ from: 3, to: 4 },
{ from: 4, to: 1 }
]);
// make accessible to the HTML buttons
myDiagram2 = diagram;
// read-only to avoid accidentally moving any Part in document coordinates
diagram.isReadOnly = true;
diagram.allowSelect = false;
diagram.initialPosition = new go.Point(-5, -5);
diagram.initialScale = 0.45;
// data objects for data tables.
function InfoBox(key,gro,loc) {
this.category = "info";
this.key = key;
this.location = go.Point.parse(loc);
this.gro = gro;
}
// alignment properties for TextBlocks in data tables.
function AlignmentObject(column,columnSpan) {
this.column = column;
this.columnSpan = columnSpan;
this.verticalAlignment = go.Spot.Center;
this.textAlign = "center";
this.alignment = go.Spot.Center;
this.height = 24;
}
// creates functions which have limited precision return values.
function prec(conv) { return g => conv(g).toPrecision(3); }
// generates cells in data tables
function dataBlock(conv, alo1, alo2) {
return $(go.TextBlock,
new AlignmentObject(alo1, alo2),
new go.Binding("text", "gro", prec(conv)));
}
const nodeTemplates = new go.Map();
// Template for data tables
nodeTemplates.add("info",
$(go.Node, "Auto",
// Allows location to be set in data object
new go.Binding("location"), { padding: 0, scale: 2 },
$(go.Panel, "Table",
{name: "table",
defaultRowSeparatorStroke: "black", defaultColumnSeparatorStroke: "black",
defaultAlignment: go.Spot.Center, background: "white"
},
// sets a different look for the defining row.
$(go.RowColumnDefinition,
{row: 0,
background: "lightgray", separatorStrokeWidth: 0,
separatorPadding: 0, coversSeparators: true,
height: 24
}),
// sets a different look for the defining column.
$(go.RowColumnDefinition,
{column: 0,
coversSeparators: true, separatorStrokeWidth: 0,
separatorPadding: 0, background: "lightgray",
width: 45
}),
// necessary to keep weirdness involving the columnSpan of certain elements in the table
// from causing separators to go through elements.
$(go.RowColumnDefinition, {column: 1, width: 28}),
$(go.RowColumnDefinition, {column: 2, separatorStroke: "transparent", width: 28}),
$(go.RowColumnDefinition, {column: 3, width: 28}),
$(go.RowColumnDefinition, {column: 4, separatorStroke: "transparent", width: 28}),
// defining row
$(go.Panel, "TableRow", {row: 0},
$(go.TextBlock, "Container", new AlignmentObject(1,2)),
$(go.TextBlock, "Diagram", new AlignmentObject(3,2))),
// angle row
$(go.Panel, "TableRow", {row: 1},
$(go.TextBlock, "angle", {column: 0}),
// container angle
dataBlock(g => g.angle, 1, 2),
// document angle
dataBlock(g => g.getDocumentAngle(), 3, 2)),
// scale row
$(go.Panel, "TableRow", {row: 2},
$(go.TextBlock, "scale", {column: 0}),
// container scale
dataBlock(g => g.scale, 1, 2),
// document scale
dataBlock(g => g.getDocumentScale(), 3, 2)),
// position row
$(go.Panel, "TableRow", {row: 3},
$(go.TextBlock, "X Y", {column: 0}),
// container x and y values
dataBlock(g => g.actualBounds.x, 1, 1),
dataBlock(g => g.actualBounds.y, 2, 1),
// document x and y values
dataBlock(g => g.getDocumentBounds().x, 3, 1),
dataBlock(g => g.getDocumentBounds().y, 4, 1)),
// dimension row
$(go.Panel, "TableRow", {row: 4},
$(go.TextBlock, "size", {column: 0}),
// container width and height
dataBlock(g => g.actualBounds.width, 1, 1),
dataBlock(g => g.actualBounds.height, 2, 1),
// document width and height
dataBlock(g => g.getDocumentBounds().width, 3, 1),
dataBlock(g => g.getDocumentBounds().width, 4, 1)))));
// data object for labels on data tables
function WordBubble(key,width,loc,desc,color) {
this.key = key; this.category = "words"; this.width = width;
this.desc = desc; this.location = go.Point.parse(loc); this.color = color;
}
// template for wordbubble objects
nodeTemplates.add("words",
$(go.Node, "Auto",
new go.Binding("location"),
$(go.TextBlock, "",
new go.Binding("text", "desc"),
new go.Binding("stroke","color"),
new go.Binding("width"),
{ textAlign: "left", font: "24pt sans-serif" })));
// creating the main node's template, adding the nested Panels to it, and adding it to the node template map.
let vertPanel = posPanel = spotPanel = vertLabel = topLabel = {};
const BigNode =
$(go.Node, "Auto",
{
location: new go.Point(300,0),
},
vertPanel =
$(go.Panel, "Vertical",
{portId: "vertPanel",
angle: 165, scale: 1.5,
background: "lightblue",
padding: 20
},
vertLabel =
$(go.TextBlock, "Vertical Panel", {font: "bold 12pt sans-serif"}),
posPanel =
$(go.Panel, "Position",
{portId: "posPanel",
angle: 120, scale: 0.8, padding: 50,
background: go.Brush.mix("brown", "lightyellow", 0.4)},
$(go.Panel, "Auto", { position: new go.Point(25,0), desiredSize: new go.Size(60,90)},
new go.Shape("Triangle", { fill: "transparent" }),
$(go.TextBlock, "This Side Up")),
$(go.TextBlock, "Position Panel", { position: new go.Point(0,100), font: "bold 12pt sans-serif" }),
),
spotPanel =
$(go.Panel, "Spot",
{portId: "spotPanel",
angle: 30, scale: 1.5,
background: "lightgreen" },
new go.Shape("RoundedRectangle", {strokeWidth: 0, desiredSize: new go.Size(50,100), fill: "transparent"}),
$(go.TextBlock, "Spot Panel",
{
font: "bold 12pt sans-serif",
alignment: go.Spot.Center,
}
),
$(go.TextBlock, "Top",
{
margin: 5,
font: "bold 12pt sans-serif",
alignment: go.Spot.Top,
}
),
bottomLabel =
$(go.TextBlock, "Bottom",
{portId: "bottomLabel",
font: "bold 12pt sans-serif",
alignment: go.Spot.Bottom
}))));
nodeTemplates.add("", BigNode);
diagram.nodeTemplateMap = nodeTemplates;
diagram.linkTemplate =
$(go.Link,
new go.Binding("toPortId"),
$(go.Shape, {strokeWidth: 5}),
$(go.Shape, {scale: 3,toArrow: "Standard"}));
diagram.model = new go.GraphLinksModel(
[
{key: "bn"},
// creating infoboxes
new InfoBox(0,vertPanel,"-20 30"),
new InfoBox(1,posPanel,"20 470"),
new InfoBox(2,spotPanel,"900 500"),
new InfoBox(3,bottomLabel,"900 180"),
// creating wordbubbles
new WordBubble(4,250,"60 0","Vertical Panel","blue"),
new WordBubble(5,250,"60 440","Position Panel","red"),
new WordBubble(6,250,"980 470","Spot Panel","green"),
new WordBubble(7,275,"960 105","TextBlock aligned at Spot.Bottom","black")
],
[
// linking each infobox to an item on the main node.
{from: 0, to: "bn", toPortId: "vertPanel"},
{from: 1, to: "bn", toPortId: "posPanel"},
{from: 2, to: "bn", toPortId: "spotPanel"},
{from: 3, to: "bn", toPortId: "bottomLabel"}
]);
The transformations of each element in a Panel are compounded by that panel's transformations.
The TextBlock that is "Bottom" has the default GraphObject.angle of zero, so that the text is drawn upright.
But that TextBlock is an element in the green "Spot" Panel whose GraphObject.angle to 30,
so it and its text should appear somewhat tilted.
However the blue "Vertical" Panel itself has an GraphObject.angle of 165.
Because each Panel has its own coordinate system and because transformations on nested elements are compounded,
the effective angle for the green Panel is 195 degrees, the sum of those individual angles (30 + 165), which is nearly upside down.
The GraphObject.scale property also affects how an object is sized in its container Panel.
The brown "Position" Panel has a scale of 0.8 relative to its container.
But because the "Vertical" Panel has a scale of 1.5, its effective scale is 1.2 overall, the product of those individual scales (0.8 x 1.5).