次のノード テンプレートがあります。
// define the Node template
mySecondDiagram.nodeTemplate =
$$(go.Node, "Auto",
// for sorting, have the Node.text be the data.name
new go.Binding("text", "name"),
// bind the Part.layerName to control the Node's layer depending on whether it isSelected
new go.Binding("layerName", "isSelected", function(sel) { return sel ? "Foreground" : ""; }).ofObject(),
// define the node's outer shape
$$(go.Shape, "Rectangle",
{
name: "SHAPE", fill: "white", stroke: null,
// set the port properties:
portId: "", fromLinkable: true, toLinkable: true, cursor: "pointer"
}),
$$(go.Panel, "Horizontal",
$$(go.Picture,
{
name: 'Picture',
desiredSize: new go.Size(50, 50),
margin: new go.Margin(6, 8, 6, 10)
},
new go.Binding("source", "", findHeadShot)),
// define the panel where the text will appear
$$(go.Panel, "Table",
{
maxSize: new go.Size(150, 999),
margin: new go.Margin(6, 10, 0, 3),
defaultAlignment: go.Spot.Left
},
$$(go.RowColumnDefinition,
{
column: 2,
width: 4
},
new go.Binding("column", "",columnSpan)
),
$$(go.TextBlock, textStyle(), // the name
{
row: 0, column: 0,columnSpan: 4,
font: "12pt Segoe UI,sans-serif",
editable: false, isMultiline: false,
minSize: new go.Size(10, 16)
},
new go.Binding("text", "name").makeTwoWay(),
new go.Binding("stroke", "",textColor)
),
$$(go.TextBlock,textStyle(),
{
row: 1, column: 0, columnSpan: 2,
font: "8pt sans-serif"
},
new go.Binding("text", "", theInfoTextConverter)
)
) // end of table
) // end Horizontal Panel
); // end Node
現在、一部のノードには画像がありません。しかし、 go.Picture はテキストを横に 50px 押し込んでいると思います ( go.size(50,50) による)。go.Picture をパネルに動的に追加する方法はありますか?
これは初心者の質問かもしれません。現在、gojsの使い方を学んでいます