我正在使用与该链接页面完全相同的goJS代码
http://gojs.net/temp/swimBands2.html
当节点很简单时,它看起来不错,但是当每个节点中都绑定了许多数据时,似乎无法显示标头。我必须缩小才能看到它。
有人可以帮我做什么吗?
我将代码修改如下
myDiagram.nodeTemplateMap.add("VerticalBands",
$(go.Part, "Position",
{
isLayoutPositioned: false, // but still in document bounds
locationSpot: new go.Spot(0, 0, 0, 16), // account for header height
layerName: "Grid", // not pickable, not selectable
itemTemplate:
$(go.Panel, "Vertical",
new go.Binding("opacity", "visible", function(v) { return v ? 1 : 0; }),
new go.Binding("position", "bounds", function(b) {b.position.y+= 30;return b.position; }),
$(go.TextBlock,
{
stretch: go.GraphObject.Horizontal,
textAlign: "center",
wrap: go.TextBlock.None,
font: "bold 11pt sans-serif",
background: $(go.Brush, go.Brush.Linear, { 0: "lightgray", 1: "whitesmoke" })
},
new go.Binding("text"),
new go.Binding("width", "bounds", function(r) { return r.width; })),
// for separator lines:
//$(go.Shape, "LineV",
// { stroke: "gray", alignment: go.Spot.Left, width: 1 },
// new go.Binding("height", "bounds", function(r) { return r.height; }),
// new go.Binding("visible", "itemIndex", function(i) { return i > 0; }).ofObject()),
// for rectangular bands:
$(go.Shape,
{ stroke: null, strokeWidth: 0 },
new go.Binding("desiredSize", "bounds", function(r) { return r.size; }),
new go.Binding("fill", "itemIndex", function(i) { return i % 2 == 0 ? "white" : "lightgray"; }).ofObject())
)
},
new go.Binding("itemArray")
));
我将locationSpot修改为新的go.Spot(0,0,0,-8),标头下降,但是节点的位置保持不变。
最佳答案
这是因为保存“带”的部件在“网格”层中,而该层中的部件未包含在Diagram.documentBounds中,因此用户(默认情况下)无法滚动到文档范围之外。
有多种可能的解决方案,具体取决于您希望用户执行的操作。
您可以将Diagram.scrollMode设置为go.Diagram.InfiniteScroll
,从而允许用户滚动至所需位置。但是我不知道是否要允许-用户可能会迷路。
或者,您可以修改“网格”层: myDiagram.findLayer("Grid").isBoundsIncluded = true;
这样该层中的零件将自动包含在Diagram.documentBounds中。如果您在该层中还有其他任何内容,那么可能需要也可能不需要。
或者,您可以将“ VerticalBands”零件放在普通图层中,使其不能被选择或选择: layerName: "Background", selectable: false, pickable: false,
如果使用“背景”层固定其他零件,则不太理想。
关于javascript - goJS背景层不显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35008703/