UNPKG

create-gojs-kit

Version:

A CLI for downloading GoJS samples, extensions, and docs

456 lines (400 loc) 21 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"/> <meta name="description" content="Display hierarchical data by nesting, where the area of each node is proportional to some value for the node. Clicking consecutively results in selecting containing Groups." /> <meta itemprop="description" content="Display hierarchical data by nesting, where the area of each node is proportional to some value for the node. Clicking consecutively results in selecting containing Groups." /> <meta property="og:description" content="Display hierarchical data by nesting, where the area of each node is proportional to some value for the node. Clicking consecutively results in selecting containing Groups." /> <meta name="twitter:description" content="Display hierarchical data by nesting, where the area of each node is proportional to some value for the node. Clicking consecutively results in selecting containing Groups." /> <link rel="preconnect" href="https://rsms.me/"> <link rel="stylesheet" href="../assets/css/style.css"> <!-- Copyright 1998-2025 by Northwoods Software Corporation. --> <meta itemprop="name" content="Tree Map Layout of Nested Groups into Given Area" /> <meta property="og:title" content="Tree Map Layout of Nested Groups into Given Area" /> <meta name="twitter:title" content="Tree Map Layout of Nested Groups into Given Area" /> <meta property="og:image" content="https://gojs.net/latest/assets/images/screenshots/treemap.png" /> <meta itemprop="image" content="https://gojs.net/latest/assets/images/screenshots/treemap.png" /> <meta name="twitter:image" content="https://gojs.net/latest/assets/images/screenshots/treemap.png" /> <meta property="og:url" content="https://gojs.net/latest/samples/TreeMap.html" /> <meta property="twitter:url" content="https://gojs.net/latest/samples/TreeMap.html" /> <meta name="twitter:card" content="summary_large_image" /> <meta property="og:type" content="website" /> <meta property="twitter:domain" content="gojs.net" /> <title> Tree Map Layout of Nested Groups into Given Area | GoJS Diagramming Library </title> </head> <body> <!-- This top nav is not part of the sample code --> <nav id="navTop" class=" w-full h-[var(--topnav-h)] z-30 bg-white border-b border-b-gray-200"> <div class="max-w-screen-xl mx-auto flex flex-wrap items-start justify-between px-4"> <a class="text-white bg-nwoods-primary font-bold !leading-[calc(var(--topnav-h)_-_1px)] my-0 px-2 text-4xl lg:text-5xl logo" href="../"> GoJS </a> <div class="relative"> <button id="topnavButton" class="h-[calc(var(--topnav-h)_-_1px)] px-2 m-0 text-gray-900 bg-inherit shadow-none md:hidden hover:!bg-inherit hover:!text-nwoods-accent hover:!shadow-none" aria-label="Navigation"> <svg class="h-7 w-7 block" aria-hidden="true" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"> <path d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </button> <div id="topnavList" class="hidden md:block"> <div class="absolute right-0 z-30 flex flex-col items-end rounded border border-gray-200 p-4 pl-12 shadow bg-white text-gray-900 font-semibold md:flex-row md:space-x-4 md:items-start md:border-0 md:p-0 md:shadow-none md:bg-inherit"> <a href="../learn/">Learn</a> <a href="../samples/">Samples</a> <a href="../intro/">Intro</a> <a href="../api/">API</a> <a href="../download.html">Download</a> <a href="https://forum.nwoods.com/c/gojs/11" target="_blank" rel="noopener">Forum</a> <a id="tc" href="https://nwoods.com/contact.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://nwoods.com/contact.html', 'contact');">Contact</a> <a id="tb" href="https://nwoods.com/sales/index.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://nwoods.com/sales/index.html', 'buy');">Buy</a> </div> </div> </div> </div> </nav> <script> window.addEventListener("DOMContentLoaded", function () { // topnav var topButton = document.getElementById("topnavButton"); var topnavList = document.getElementById("topnavList"); if (topButton && topnavList) { topButton.addEventListener("click", function (e) { topnavList .classList .toggle("hidden"); e.stopPropagation(); }); document.addEventListener("click", function (e) { // if the clicked element isn't the list, close the list if (!topnavList.classList.contains("hidden") && !e.target.closest("#topnavList")) { topButton.click(); } }); // set active <a> element var url = window .location .href .toLowerCase(); var aTags = topnavList.getElementsByTagName('a'); for (var i = 0; i < aTags.length; i++) { var lowerhref = aTags[i] .href .toLowerCase(); if (lowerhref.endsWith('.html')) lowerhref = lowerhref.slice(0, -5); if (url.startsWith(lowerhref)) { aTags[i] .classList .add('active'); break; } } } }); </script> <div class="flex flex-col prose"> <div class="w-full max-w-screen-xl mx-auto"> <!-- * * * * * * * * * * * * * --> <!-- Start of GoJS sample code --> <script src="https://cdn.jsdelivr.net/npm/gojs@3.1.0"></script> <div id="allSampleContent" class="p-4 w-full"> <script src="../extensions/TreeMapLayout.js"></script> <script id="code"> function init() { myDiagram = new go.Diagram('myDiagramDiv', { initialAutoScale: go.AutoScale.Uniform, 'animationManager.isEnabled': false, layout: new TreeMapLayout({ isTopLevelHorizontal: false }), allowMove: false, allowCopy: false, allowDelete: false }); // change selection behavior to cycle up the chain of containing Groups myDiagram.toolManager.clickSelectingTool.standardMouseSelect = function () { // method override requires function, not => var diagram = this.diagram; if (diagram === null || !diagram.allowSelect) return; var e = diagram.lastInput; if (!(e.control || e.meta) && !e.shift) { var part = diagram.findPartAt(e.documentPoint, false); if (part !== null) { var firstselected = null; // is this or any containing Group selected? var node = part; while (node !== null) { if (node.isSelected) { firstselected = node; break; } else { node = node.containingGroup; } } if (firstselected !== null) { // deselect this and select its containing Group firstselected.isSelected = false; var group = firstselected.containingGroup; if (group !== null) group.isSelected = true; return; } } } go.ClickSelectingTool.prototype.standardMouseSelect.call(this); }; // Nodes and Groups are the absolute minimum template: no elements at all! myDiagram.nodeTemplate = new go.Node({ background: 'rgba(99,99,99,0.2)', toolTip: go.GraphObject.build('ToolTip') .add( new go.TextBlock() .bindObject('text', '', tooltipString) ) }) .bind('background', 'fill'); myDiagram.groupTemplate = new go.Group('Auto', { layout: null, background: 'rgba(99,99,99,0.2)', toolTip: go.GraphObject.build('ToolTip') .add( new go.TextBlock() .bindObject('text', '', tooltipString) ) }) .bind('background', 'fill'); function tooltipString(part) { if (part instanceof go.Adornment) part = part.adornedPart; var msg = createPath(part); msg += '\nsize: ' + part.data.size; if (part instanceof go.Group) { var group = part; msg += '\n# children: ' + group.memberParts.count; msg += '\nsubtotal size: ' + group.data.total; } return msg; } function createPath(part) { var parent = part.containingGroup; return (parent !== null ? createPath(parent) + '/' : '') + part.data.text; } // generate a tree with the default values rebuildGraph(); } function rebuildGraph() { var minNodes = document.getElementById('minNodes').value; minNodes = parseInt(minNodes, 10); var maxNodes = document.getElementById('maxNodes').value; maxNodes = parseInt(maxNodes, 10); var minChil = document.getElementById('minChil').value; minChil = parseInt(minChil, 10); var maxChil = document.getElementById('maxChil').value; maxChil = parseInt(maxChil, 10); // create and assign a new model var model = new go.GraphLinksModel(); model.nodeGroupKeyProperty = 'parent'; model.nodeDataArray = generateNodeData(minNodes, maxNodes, minChil, maxChil); myDiagram.model = model; } // Creates a random number (between MIN and MAX) of randomly colored nodes. function generateNodeData(minNodes, maxNodes, minChil, maxChil) { var nodeArray = []; if (minNodes === undefined || isNaN(minNodes) || minNodes < 1) minNodes = 1; if (maxNodes === undefined || isNaN(maxNodes) || maxNodes < minNodes) maxNodes = minNodes; // Create a bunch of node data var numNodes = Math.floor(Math.random() * (maxNodes - minNodes + 1)) + minNodes; for (var i = 0; i < numNodes; i++) { var size = Math.random() * Math.random() * 10000; // non-uniform distribution nodeArray.push({ key: i, // the unique identifier isGroup: false, // many of these turn into groups, by code below parent: undefined, // is set by code below that assigns children text: i.toString(), // some text to be shown by the node template fill: go.Brush.randomColor(), // a color to be shown by the node template size: size, total: -1 // use a negative value to indicate that the total for the group has not been computed }); } // Takes the random collection of node data and creates a random tree with them. // Respects the minimum and maximum number of links from each node. // The minimum can be disregarded if we run out of nodes to link to. if (nodeArray.length > 1) { if (minChil === undefined || isNaN(minChil) || minChil < 0) minChil = 0; if (maxChil === undefined || isNaN(maxChil) || maxChil < minChil) maxChil = minChil; // keep the Set of node data that do not yet have a parent var available = new go.Set(); available.addAll(nodeArray); for (var i = 0; i < nodeArray.length; i++) { var parent = nodeArray[i]; available.remove(parent); // assign some number of node data as children of this parent node data var children = Math.floor(Math.random() * (maxChil - minChil + 1)) + minChil; for (var j = 0; j < children; j++) { var child = available.first(); if (child === null) break; // oops, ran out already available.remove(child); // have the child node data refer to the parent node data by its key child.parent = parent.key; if (!parent.isGroup) { // make sure PARENT is a group parent.isGroup = true; } var par = parent; while (par !== null) { par.total += child.total; // sum up sizes of all children if (par.parent !== undefined) { par = nodeArray[par.parent]; } else { break; } } } } } return nodeArray; } window.addEventListener('DOMContentLoaded', init); </script> <div id="sample"> <div style="margin-bottom: 5px; padding: 5px; background-color: aliceblue"> <span style="display: inline-block; vertical-align: top; padding: 5px"> <b>New Tree</b><br /> MinNodes: <input type="number" width="2" id="minNodes" value="300" /><br /> MaxNodes: <input type="number" width="2" id="maxNodes" value="500" /><br /> MinChildren: <input type="number" width="2" id="minChil" value="2" /><br /> MaxChildren: <input type="number" width="2" id="maxChil" value="5" /><br /> <button type="button" onclick="rebuildGraph()">Generate Tree</button> </span> </div> <div id="myDiagramDiv" style="background-color: white; border: solid 1px black; width: 100%; height: 500px"></div> <p> This sample demonstrates a custom Layout, TreeMapLayout, which assumes that the diagram consists of nested Groups and simple Nodes. Each node is positioned and sized to fill an area of the viewport proportionate to its "size", as determined by its Node.data.size property. Each Group gets a size that is the sum of all of its member Nodes. </p> <p>The layout is defined in its own file, as <a href="../extensions/TreeMapLayout.js">TreeMapLayout.js</a>.</p> <p> Clicking repeatedly at the same point will initially select the Node at that point, and then its containing Group, and so on up the chain of containers. </p> <p> We have additional samples demonstrating variations. </p> </div> </div> <!-- * * * * * * * * * * * * * --> <!-- End of GoJS sample code --> </div> <div id="allTagDescriptions" class="p-4 w-full max-w-screen-xl mx-auto"> <hr/> <h3 class="text-xl">GoJS Features in this sample</h3> <!-- blacklist tags that do not correspond to a specific GoJS feature --> <h4>Collections</h4> <p> <b>GoJS</b> provides its own collection classes: <a href="../api/symbols/List.html" target="api">List</a>, <a href="../api/symbols/Set.html" target="api">Set</a>, and <a href="../api/symbols/Map.html" target="api">Map</a>. You can iterate over a collection by using an <a href="../api/symbols/Iterator.html" target="api">Iterator</a>. More information can be found in the <a href="../intro/collections.html">GoJS Intro</a>. </p> <p> <a href="../samples/index.html#collections">Related samples</a> </p> <hr> <!-- blacklist tags that do not correspond to a specific GoJS feature --> <h4>Custom Layouts</h4> <p> GoJS allows for the creation of custom layouts to meet specific needs. </p> <p> There are also many layouts that are extensions -- not predefined in the <code>go.js</code> or <code>go-debug.js</code> library, but available as source code in one of the three extension directories, with some documentation and corresponding samples. More information can be found in the <a href="../intro/layouts.html#CustomLayouts">GoJS Intro</a>. </p> <p> <a href="../samples/index.html#customlayout">Related samples</a> </p> <hr> <!-- blacklist tags that do not correspond to a specific GoJS feature --> <h4>Groups</h4> <p> The <a href="../api/symbols/Group.html" target="api">Group</a> class is used to treat a collection of <a href="../api/symbols/Node.html" target="api">Node</a>s and <a href="../api/symbols/Link.html" target="api">Link</a>s as if they were a single <a href="../api/symbols/Node.html" target="api">Node</a>. Those nodes and links are members of the group; together they constitute a subgraph. </p> <p> A subgraph is <em>not</em> another <a href="../api/symbols/Diagram.html" target="api">Diagram</a>, so there is no separate HTML Div element for the subgraph of a group. All of the <a href="../api/symbols/Part.html" target="api">Part</a>s that are members of a <a href="../api/symbols/Group.html" target="api">Group</a> belong to the same Diagram as the Group. There can be links between member nodes and nodes outside of the group as well as links between the group itself and other nodes. There can even be links between member nodes and the containing group itself. </p> <p> More information can be found in the <a href="../intro/groups.html">GoJS Intro</a>. </p> <p> <a href="../samples/index.html#groups">Related samples</a> </p> <hr> <!-- blacklist tags that do not correspond to a specific GoJS feature --> <h4>ToolTips</h4> <p> A tooltip is an <a href="../api/symbols/Adornment.html" target="api">Adornment</a> that is shown when the mouse hovers over an object that has its <a href="../api/symbols/GraphObject.html#toolTip" target="api">GraphObject.toolTip</a> set. The tooltip part is bound to the same data as the part itself. </p> <p> It is typical to implement a tooltip as a "ToolTip" Panel holding a <a href="../api/symbols/TextBlock.html" target="api">TextBlock</a> or a Panel of TextBlocks and other objects. Each "ToolTip" is just an "Auto" Panel <a href="../api/symbols/Adornment.html" target="api">Adornment</a> that is shadowed, and where the border is a rectangular <a href="../api/symbols/Shape.html" target="api">Shape</a> with a light gray fill. However you can implement the tooltip as any arbitrarily complicated Adornment. </p> <p> More information can be found in the <a href="../intro/tooltips.html">GoJS Intro</a>. </p> <p> <a href="../samples/index.html#tooltips">Related samples</a> </p> <hr> <!-- blacklist tags that do not correspond to a specific GoJS feature --> <h4>GoJS Extensions</h4> <p> <b>GoJS</b> can be extended in a variety of ways. The most common way to change the standard behavior is to set properties on the <a href="../api/symbols/GraphObject.html" target="api">GraphObject</a>, <a href="../api/symbols/Diagram.html" target="api">Diagram</a>, <a href="../api/symbols/CommandHandler.html" target="api">CommandHandler</a>, <a href="../api/symbols/Tool.html" target="api">Tool</a>, or <a href="../api/symbols/Layout.html" target="api">Layout</a>. But when the desired property does not exist, you might need to override methods of CommandHandler, Tool, Layout, Link, or Node. Methods that you can override are documented in the API reference. Various features of GoJS can be overriden, either by replacing a method on an instance (a feature of JavaScript) or by defining a subclass. You should not modify the prototypes of any of the <b>GoJS</b> classes. </p> <p> In addition to our samples, <b>GoJS</b> provides an <strong><a href="../samples/#extensions">extensions gallery</a></strong>, showcasing the creation of custom tools and layouts. Those classes and samples are written in TypeScript, available at <code>../extensionsJSM/</code>, as ECMAScript/JavaScript modules -- these use the <code>../release/go-module.js</code> library. We recommend that you copy the files that you need into your project, so that you can adjust how they refer to the GoJS library that you choose and so that you can include them into your own building and packaging procedures. </p> <p> More information can be found in the <a href="../intro/extensions.html">GoJS Intro</a>. </p> <p> <a href="../samples/index.html#extensions">Related samples</a> </p> <hr> <!-- blacklist tags that do not correspond to a specific GoJS feature --> <h4>HTML Interaction</h4> <p> GoJS Diagrams can be used alongside other HTML elements in a webapp. For custom Text Editors, Context Menus, and ToolTips, which are invoked and hidden via GoJS tool operations, it is best to use the <a href="../api/symbols/HTMLInfo.html" target="api">HTMLInfo</a> class. </p> <p> More information can be found in the <a href="../intro/HTMLinteraction.html">GoJS Intro</a>. </p> <p> <a href="../samples/index.html#html">Related samples</a> </p> <hr> </div> </div> </body> <!-- This script is part of the gojs.net website, and is not needed to run the sample --> <script src="../assets/js/goSamples.js"></script> </html>