Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

227
Vistas
Gojs making part of header always visible and changing background colors individually

Bands are currently running dynamically in the Banded Tree Layout.When there is no data on the nodes in the band, the band is completely invisible.

Q 1 : How can I make the header part always visible even if the related band is empty? Q 2: how do i change the background colors of the headers individually?

myDiagram.nodeTemplateMap.add("VerticalBands",
  $(go.Part, "Position", 
    {  
      isLayoutPositioned: false,  // but still in document bounds
      locationSpot: new go.Spot(0, 0, 0, 30),  // account for header height
      layerName: "Background",
      pickable: false,
      selectable: false,
      itemTemplate:
        $(go.Panel, "Vertical",
          new go.Binding("opacity", "visible", function (v) { return v ? 1 : 0; }),
          new go.Binding("position", "bounds", function (b) { return b.position; }),
          $(go.TextBlock, 
            { 
              verticalAlignment: go.Spot.Center,
              textAlign: "center",
              background: headerColor,
              wrap: go.TextBlock.None,
              font: "12pt 'Open Sans', Arial, sans-serif",
              stroke: "transparent",
              height: 30,
            },
            
            new go.Binding("text"),
            new go.Binding("width", "bounds", function (r) { return r.width; })),

          // 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 ? "#ececec" : "whitesmoke" ; }).ofObject()),

        )
    },
    new go.Binding("itemArray")
  ));

myDiagram.model = new go.TreeModel(nodearray);

}

 // update the background object holding the visual "bands"
var bands = this.diagram.findPartForKey("_BANDS");
  if (bands) {
    var model = this.diagram.model;
    bands.location = this.arrangementOrigin.copy().add(offset);

    // make each band visible or not, depending on whether there is a layer for it
    for (var it = bands.elements; it.next();) {
      var idx = it.key;
      var elt = it.value;  // the item panel representing a band
      elt.visible = idx < layerRects.length;
    }

    // set the bounds of each band via data binding of the "bounds" property
    var arr = bands.data.itemArray;
    for (var i = 0; i < layerRects.length; i++) {
      var itemdata = arr[i];
      if (itemdata) {
        model.setDataProperty(itemdata, "bounds", layerRects[i]);
      }
    }
  }
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda