Replace Genogram node with image

Hello!
i’m newbie in Gojs. Is there any way to show images in Genogram node?

var $ = go.GraphObject.make;
myDiagram =
$(go.Diagram, “myDiagramDiv”,
{
initialAutoScale: go.Diagram.Uniform,
initialContentAlignment: go.Spot.Center,
“undoManager.isEnabled”: true,
// when a node is selected, draw a big yellow circle behind it
nodeSelectionAdornmentTemplate:
$(go.Adornment, “Auto”,
{ layerName: “Grid” }, // the predefined layer that is behind everything else
$(go.Shape, “Circle”, { fill: “yellow”, stroke: null }),
$(go.Placeholder)
),
layout: // use a custom layout, defined below
$(GenogramLayout, { direction: 90, layerSpacing: 30, columnSpacing: 10 })
});

Yes, that is a matter of having the node template include a Picture in it. Learn about them at Get Started with GoJS, GoJS Pictures -- Northwoods Software, GoJS Panels -- Northwoods Software, GoJS Table Panels -- Northwoods Software, and GoJS Sizing of GraphObjects -- Northwoods Software.