Fact-checked by Grok 2 weeks ago

Graph drawing

Graph drawing is the algorithmic discipline dedicated to producing visual representations of graphs—abstract structures consisting of vertices as entities and edges as relationships—by assigning geometric coordinates to vertices and rendering edges as lines or curves to facilitate comprehension and analysis. These drawings emphasize through aesthetic criteria such as minimizing edge crossings, bends, and overlaps, while maximizing and uniform edge lengths to reveal the underlying graph structure. The field intersects , , and , with conventions including grid-based placements on integer coordinates, polyline edges formed by line segments, straight-line connections, and orthogonal drawings restricted to horizontal and vertical segments. The origins of graph drawing trace to early , notably Leonhard Euler's 1736 solution to the bridge problem, which formalized graphs without explicit but inspired subsequent representational needs. By the 18th and 19th centuries, applications emerged in (e.g., René Haüy's 1784 lattice diagrams) and molecular chemistry (e.g., Alexander Crum Brown's 1864 depictions of chemical bonds), evolving into systematic algorithms in the . Key milestones include planarity tests by Kuratowski (1930) and Kurt Wagner (1937), straight-line drawing theorems for planar graphs by István Fáry (1948), and force-directed methods pioneered by in the 1960s, which model vertices as particles repelling via simulated springs. Workshops like Graph Drawing '92 in and '94 in Princeton marked the field's maturation, fostering research in and layouts. Major algorithmic paradigms include force-directed approaches, which iteratively adjust positions to balance attractive and repulsive forces for symmetric layouts, particularly effective for general undirected graphs; planar drawing methods, ensuring crossing-free embeddings for planar graphs via techniques like or visibility representations; and hierarchical layouts for directed acyclic graphs, layering nodes by rank to support flow visualization, as in the Sugiyama framework (1981). Specialized algorithms address subclasses, such as Reingold–Tilford for layered drawings minimizing width, or polyline methods achieving linear-time for certain planar graphs (e.g., Kant, 1996). Challenges persist in non-planar graphs, requiring planarization or 3D extensions, and in optimizing metrics like drawing area or bend minimization. Applications of graph drawing are diverse and impactful, underpinning VLSI circuit design for chip layouts, software engineering via UML diagrams and database schemas, network visualization in computer systems, and bioinformatics for molecular pathways. In social sciences, it enables sociograms; in architecture, floor plans; and in user interfaces, interactive explorations of complex data. Ongoing research emphasizes dynamic and interactive drawings, evaluation benchmarks, and integration with machine learning to automate aesthetic improvements.

Fundamentals

Definition and Basic Principles

Graph drawing is the algorithmic process of visualizing an abstract graph by mapping its vertices to points in the (or higher-dimensional space) and representing its edges as curves or line segments connecting those points, with the goal of producing a clear and informative layout. This distinguishes between the abstract combinatorial structure of the graph and its geometric realization, where the positions of vertices and the paths of edges determine the visual properties such as crossings and readability. At its core, graph drawing operates on graphs defined in , where an undirected graph G = (V, E) consists of a set V of and a set E of edges connecting pairs of , without self-loops or multiple edges between the same pair in simple graphs; multigraphs allow multiple edges, while directed graphs incorporate edge orientations. Common drawing styles include straight-line drawings, where edges are line segments; polyline drawings, where edges are polygonal chains; and orthogonal drawings, where edges consist of horizontal and vertical segments. A fundamental objective in many embeddings, particularly planar ones, is to minimize the total edge length, formulated as \sum_{uv \in E} \| p_u - p_v \|, where p_i denotes the position of i. The scope of graph drawing encompasses both static drawings for fixed graphs and dynamic drawings that adapt to changes in the graph structure over time, often requiring smooth animations between layouts; it also extends to and spaces, though remains the primary focus for readability.

Historical Development

The theoretical foundations of graph drawing trace back to early 20th-century results on s. In 1936, Klaus Wagner proved that every admits a straight-line without crossings, establishing a key property for geometric representations. Independently, in 1948, Fáry extended this by showing that any simple can be drawn with straight-line edges, providing the first rigorous guarantee for crossing-free straight-line drawings. These results laid the groundwork for algorithmic approaches but were primarily theoretical, predating computational applications. The practical development of graph drawing algorithms began in the with the advent of . A seminal contribution was W.T. Tutte's 1963 method for embedding 3-connected planar graphs using barycentric coordinates, which produced straight-line drawings by solving a based on spring-like forces. This marked one of the earliest force-directed techniques, bridging and . The saw further advancements: Kozo Sugiyama and colleagues introduced the layered drawing framework in 1981 for hierarchical directed graphs, emphasizing topological ordering and edge bundling to enhance readability. Peter Eades followed in 1984 with a heuristic spring-embedder model for general undirected graphs, simulating physical forces to minimize crossings and optimize . These methods established core paradigms for automated . The 1990s formalized the field through dedicated research and resources. The first International Symposium on Graph Drawing was held in 1992 near Rome, Italy, fostering a dedicated community and annual proceedings that advanced algorithmic and aesthetic criteria. A landmark publication, the 1999 book Graph Drawing: Algorithms for the Visualization of Graphs by Giuseppe Di Battista, Peter Eades, Roberto Tamassia, and Ioannis G. Tollis, synthesized foundational techniques and became a standard reference for researchers. Entering the 2000s, the focus shifted toward scalability for large networks, with force-directed methods adapted to handle graphs exceeding 100,000 vertices through approximations and parallelization; extensions to 3D drawings also gained traction for immersive visualizations. Software tools like (1991 onward), Cytoscape (2003), and (2008) integrated these algorithms, enabling practical deployment in domains such as and social sciences. Post-2010 developments emphasized applications, driven by the explosion of network data in , bioinformatics, and . The Graph Drawing symposia reflected this evolution, with the 31st in Palermo, (2023), the 32nd in Vienna, (2024), and the 33rd in , (2025), increasingly featuring tracks on dynamic, massive-scale, and interactive visualizations. This period saw innovations in stress-minimizing layouts and hybrid methods to address scalability challenges, underscoring graph drawing's role in interpreting complex real-world networks.

Visual Conventions

Node and Edge Representations

In graph drawing, nodes representing are commonly depicted as simple geometric shapes such as circles, ellipses, or points to facilitate clear identification and positioning in the . These shapes are chosen for their neutrality and minimal visual clutter, allowing focus on relational structures rather than ornate designs. Node size can encode attributes like , with larger diameters indicating higher connectivity, while colors differentiate node types or clusters, enhancing interpretability in complex graphs. Labels, typically textual identifiers, are placed adjacent to nodes, often outside or within the shape if space permits, to avoid obscuring connections. Edges, representing connections between vertices, are visualized as lines or curves linking node centers to maintain relational clarity. Straight lines are preferred for their simplicity and directness in non-orthogonal layouts, promoting ease of tracing relationships. For orthogonal drawings, polylines with right-angle bends are used to align with structures, reducing angular ambiguity. Curved edges, such as splines or , appear in aesthetic-focused layouts to minimize visual crossings and improve . Edge thickness varies to denote weights, with thicker lines signaling stronger or more significant connections, while arrows at endpoints indicate directionality in directed graphs. Standard conventions adapt these representations to domain-specific needs for consistency and readability. In (UML) for software graphs, nodes for classes are rendered as rectangles containing compartments for attributes and methods, while edges use solid lines for associations and dashed lines for dependencies. Network diagrams often employ dashed or dotted lines for virtual or logical links to distinguish them from solid lines representing physical connections. A core convention across these visualizations is the avoidance of overlapping nodes or edges, ensuring distinct separation to prevent misinterpretation of adjacency or hierarchy.

Standard Notations and Symbols

In graph drawing, standard notations for graphs often begin with abstract representations such as adjacency matrices, where rows and columns correspond to vertices and entries indicate the presence or absence of edges between them. However, when transitioning to visual drawings, vertices are typically denoted by alphanumeric labels, such as single letters (e.g., v_1, u) or identifiers representing entities like nodes in a . Edge notations in drawings include labels for attributes like weights or costs, often placed along the line segments to convey quantitative information without altering the geometric layout. Symbols for edges distinguish between undirected and directed graphs through simple visual cues: undirected edges are represented as plain straight or curved lines connecting two vertices, implying bidirectional connectivity, while directed edges incorporate arrowheads at one endpoint to indicate the orientation of the relationship. These conventions ensure clarity in interpreting flow or association, with arrowheads typically styled as filled triangles or chevrons for emphasis. Clusters or groups of vertices, such as subgraphs or communities, are commonly enclosed by bounding boxes—rectangular outlines—or differentiated via distinct colors to highlight modular structures without overlapping individual elements. Domain-specific adaptations extend these notations for interpretability in specialized fields. In biological network visualizations, nodes representing genes or proteins may use icons like ovals for simple entities or cut-corner rectangles (octagons) for complexes, following the Graphical Notation (SBGN) to standardize process descriptions and entity relationships. For social networks, vertices often incorporate user avatars or profile icons instead of generic labels, allowing quick recognition of individuals or groups while maintaining edge symbols for interactions like friendships or follows. Flowcharts, a of graph drawings, adhere to ISO 5807 standards, employing symbols such as rectangles for processes, diamonds for decisions, and arrows for directional flow between elements. Tools like with the TikZ package facilitate precise symbolic rendering in academic and technical drawings, enabling customizable vertex shapes, arrows, and labels through declarative code that avoids manual positioning errors. In multi- graphs, where multiple connections exist between the same pair of vertices, ambiguity is mitigated by parallel , distinct line styles (e.g., dashed vs. solid), or explicit numeric labels on each to differentiate instances.

Quality Evaluation

Aesthetic Criteria

Aesthetic criteria in graph drawing refer to a set of principles aimed at enhancing the visual appeal and of graph layouts, often balancing subjective human preferences with objective geometric properties. These criteria guide the design of algorithms to produce drawings that facilitate comprehension of , such as relationships between nodes and edges. While some criteria are qualitative, others can be quantified through metrics, serving as optimization targets in layout methods. has validated that adhering to these criteria improves user task performance, particularly in domains like software visualization and network analysis. Key aesthetic criteria include uniform edge lengths, where edges are ideally of similar length to avoid visual imbalance; minimal bends, preferring straight or low-curvature edges for clarity; and , which exploits symmetries to create balanced, intuitive layouts. balance seeks a drawing whose bounding has a width-to-height close to 1, suitable for standard displays without excessive whitespace. Readability is further enhanced by node-edge separation, ensuring sufficient distance between non-adjacent vertices and edges to prevent overlaps. These elements collectively contribute to a drawing's overall coherence, though they often involve trade-offs, such as prioritizing uniform edge lengths over . A seminal framework for these criteria was proposed by Helen C. Purchase, identifying seven common aesthetics derived from graph drawing literature and validated through user studies. These are:
  • Minimize bends: Reduce the total number of direction changes in polyline edges to promote smoothness.
  • Node distribution: Evenly spread nodes within the bounding box to avoid clustering and improve spatial uniformity.
  • Edge variation: Maintain uniform edge lengths to enhance perceptual consistency.
  • Direction of flow: Align edges in a consistent direction, often top-to-bottom or left-to-right, to suggest .
  • Orthogonality: Align edges and nodes to a , minimizing diagonal lines for a structured appearance.
  • Edge lengths: Keep edges short but not excessively so, balancing density and visibility.
  • Symmetry: Display symmetric substructures where possible, leveraging human bias toward balanced forms.
Purchase's experiments demonstrated trade-offs, such as conflicting with length uniformity, where enforcing grid alignment can elongate some . Additional quantitative concepts include straightness, which favors straight-line over polylines to reduce ; , defined as the minimum angle \theta between two adjacent at a , ideally approaching $360^\circ / d(v) where d(v) is the to avoid acute angles; and resolution, the minimum between any two , ensuring distinct node placement. Node- separation extends this to the minimum distance between a and a non-incident , preventing visual clutter. High and resolutions are crucial for in dense graphs. Empirical studies from the , including those by Purchase, revealed user preferences for layouts, with participants showing faster and higher accuracy in tasks like identifying properties when was present, though its impact varied by type. For instance, in UML diagrams, and uniform edge lengths significantly boosted performance over asymmetric alternatives. These findings underscore that while not all criteria equally affect , and edge uniformity are robustly preferred across domains.

Planarity and Crossing Metrics

In graph drawing, planarity refers to the property of a that allows it to be embedded in the without any crossings, meaning vertices are represented as points and edges as non-intersecting curves connecting them. A possessing this property is called planar, and such an preserves the graph's combinatorial structure while ensuring topological embeddability. Kuratowski's theorem provides a precise characterization of non-planar graphs: a finite undirected is planar it contains no that is a subdivision of the K_5 or the K_{3,3}. These forbidden subgraphs serve as the minimal obstructions to planarity, enabling algorithmic tests for embeddability by searching for such subdivisions. For non-planar graphs, crossing metrics quantify the extent of unavoidable edge intersections in drawings. The crossing number \mathrm{cr}(G) of a graph G is defined as the minimum number of edge crossings over all possible drawings in the plane, where a crossing occurs at the intersection point of two edges that do not share a vertex. This metric counts the total number of such intersection points, assuming a simple drawing where edges intersect transversely and at most once per pair; an edge crossing pair refers to a pair of non-adjacent edges that intersect in the drawing. Computing \mathrm{cr}(G) exactly is NP-complete, even for restricted classes of graphs. Upper bounds on \mathrm{cr}(G) provide insight into the scale of crossings; for a graph with n = |V| vertices, a trivial bound is \mathrm{cr}(G) \le \binom{|E|}{2}, but improved estimates show \mathrm{cr}(G) = O(n^4) in the worst case, as realized by complete graphs where \mathrm{cr}(K_n) \le \frac{1}{4} \lfloor n/2 \rfloor^2 \lfloor (n-1)/2 \rfloor^2. Fáry's establishes that every admits a straight-line without crossings, where edges are represented as line segments, bridging combinatorial planarity with geometric realizations. In dense graphs, where edge density approaches O(n^2), crossing metrics often normalize the total crossings to assess impact; for instance, the average number of crossings per edge, computed as \mathrm{cr}(G) / |E|, highlights how intersections distribute across edges, with values exceeding 1 indicating significant clutter in optimal drawings. Crossing density, defined as \mathrm{cd}(G) = \mathrm{cr}(G) / n^4, further scales this for dense cases, approaching constants like 1/64 for complete graphs to quantify topological complexity.

Core Layout Techniques

Force-Directed Methods

Force-directed methods are a class of graph drawing algorithms inspired by physical systems, where nodes are modeled as particles that repel each other, and edges act as springs that attract connected nodes toward an equilibrium state. This simulation seeks a layout where repulsive forces between all pairs of nodes balance the attractive forces along edges, resulting in a configuration that minimizes overall energy and promotes even distribution of nodes. The approach is particularly effective for undirected graphs, producing , aesthetically pleasing layouts without requiring specific graph properties like planarity. One of the earliest and most influential algorithms is the , which minimizes an energy function defined as
E = \sum_{i < j} \frac{1}{2} k_{i,j} \left( \| \mathbf{p}_i - \mathbf{p}_j \| - l_{i,j} \right)^2,
where \mathbf{p}_i and \mathbf{p}_j are the positions of nodes i and j, l_{i,j} is the ideal distance based on graph-theoretic shortest paths (scaled by a constant L), and k_{i,j} is a stiffness coefficient inversely proportional to the square of the shortest path distance. This formulation treats the layout as an optimization problem, aiming to make geometric distances approximate graph distances.
The Fruchterman-Reingold algorithm builds on this spring model with explicit force definitions: attractive forces f_a(d) = \frac{d^2}{k} pulling connected nodes together, and repulsive forces f_r(d) = -\frac{k^2}{d} pushing all nodes apart, where d is the distance between nodes and k is a scaling factor derived from the graph's area and number of vertices (k = C \sqrt{\frac{\text{area}}{|V|}}). Iterations apply these forces as vectors to update node positions, with a cooling "temperature" schedule that limits displacement in later steps to prevent oscillations and ensure convergence to a stable layout. Convergence in force-directed methods is achieved through iterative numerical techniques, such as gradient descent variants like the in , which solves the partial derivatives of the energy function to adjust positions toward local minima. Alternatively, simulated annealing can be incorporated, as in later extensions, to escape local minima by allowing probabilistic acceptance of worse configurations during a cooling process, improving global optimization for criteria like edge crossing reduction. These methods are best suited for small to medium undirected graphs with fewer than 1000 vertices, where computational costs remain manageable and layouts avoid clustering artifacts common in larger instances. For graphs exceeding a few hundred nodes, they often require enhancements to handle quadratic time complexity in repulsive force calculations. A notable variant is the concentric or radial force-directed layout, which constrains nodes to concentric circles centered on a focal node or point, combining repulsive and attractive forces with angular adjustments to emphasize hierarchy or focus+context views in clustered graphs. This adaptation maintains the core physics simulation while enforcing radial symmetry for improved readability in networks with natural centers.

Layered and Hierarchical Layouts

Layered and hierarchical layouts organize the vertices of a directed graph into distinct levels or layers, typically arranged vertically, to reveal the underlying topological structure and flow of information. This approach is particularly suited for directed acyclic graphs (DAGs), where edges point from upper layers to lower ones, minimizing edge bends and enhancing readability. The seminal Sugiyama framework, introduced in 1981, provides a multi-phase algorithm for generating such drawings by systematically assigning layers, ordering vertices within layers, positioning nodes, and routing edges. To accommodate graphs with cycles, the framework first removes cycles by computing a feedback arc set, which identifies and reverses a minimal set of edges to render the graph acyclic; heuristics such as depth-first search orderings or greedy methods are commonly employed for this step. Once acyclic, the ranking phase assigns each vertex to a layer based on its topological position. A standard method is the longest path ranking, which places a vertex in a layer equal to the length of the longest directed path from a source vertex to it, ensuring the drawing has minimal height while distributing vertices across layers. The crossing reduction phase then orders vertices within each layer to minimize edge intersections, primarily between consecutive layers. This is achieved iteratively using heuristics like the , where each vertex's position is determined by the average (barycenter) of its neighbors' positions in adjacent layers, or the , which uses the median instead to reduce sensitivity to outliers. These one-sided optimizations sweep upward and downward through the layers until convergence, significantly lowering crossings in practice. Following ordering, coordinate assignment positions vertices horizontally within layers, often aligning chains of dummy vertices (introduced to subdivide long edges spanning multiple layers) using techniques like median placement to minimize edge bends. Edge routing then connects vertices with straight lines or polylines, ensuring at most two bends per original edge. The resulting layouts are widely used in visualizing flowcharts and Unified Modeling Language (UML) diagrams, where hierarchical relationships must be clearly conveyed. The effectiveness of the ordering step hinges on minimizing the crossing number between consecutive layers i and i+1, defined for layer orderings \pi_i and \pi_{i+1} as the total number of edge pairs that cross: C(\pi_i, \pi_{i+1}) = \sum_{\substack{(u,v), (x,y) \in E \\ u,x \in L_i, v,y \in L_{i+1} \\ \pi_i(u) < \pi_i(x) < \pi_{i+1}(y) < \pi_{i+1}(v)}} 1 where L_i denotes layer i, and the sum counts inversions in the relative ordering of edge endpoints. This NP-hard problem is approximated by the barycenter and median heuristics, which yield substantial reductions in crossings for real-world graphs.

Orthogonal and Grid-Based Drawings

Orthogonal drawings of graphs position vertices at points in the plane and represent edges as polylines consisting exclusively of horizontal and vertical segments, ensuring that no two edges cross except possibly at shared endpoints. This style is particularly suited for applications requiring right-angle routing, such as circuit schematics, where straight-line edges would be impractical. A key objective in orthogonal drawings is bend minimization, where a bend on an edge is defined as a point where the direction changes from horizontal to vertical or vice versa; the total number of bends across all edges, denoted as b(G) = \sum_{e \in E} b(e) with b(e) being the number of direction changes on edge e, measures the complexity and readability of the drawing. Seminal work by Tamassia introduced an algorithm for computing an orthogonal drawing of a planar graph with a fixed combinatorial embedding that minimizes the total number of bends using a minimum-cost flow network, achieving O(n \log n) time complexity for graphs with n vertices under certain conditions. However, finding an optimal orthogonal drawing that minimizes bends over all possible planar embeddings of the graph is NP-hard, as established by reductions showing that even deciding the existence of a bend-free (rectilinear) drawing is NP-complete for planar graphs of maximum degree four. To address this, practical algorithms often fix a planar embedding first and then optimize the shape within it, balancing computational feasibility with aesthetic quality. Visibility representations provide a foundational technique for constructing orthogonal drawings, where vertices are mapped to horizontal line segments and edges to vertical visibilities between them, ensuring no obstructions between adjacent segments. Tamassia and Tollis developed a unified framework for such representations of planar graphs, enabling linear-time construction for st-connected graphs and extending to general cases via decomposition into series-parallel components. This approach facilitates polyline routing by transforming visibility graphs into orthogonal layouts with controlled bend counts, often integrating with flow-based methods for further refinement. Grid-based orthogonal drawings impose the additional constraint that all vertices and bend points lie on integer coordinates of a grid, promoting compactness and alignment in automated layouts. Compaction techniques then minimize the drawing's area by sliding components horizontally and vertically while preserving the orthogonal representation and non-crossing properties, formulated as a simultaneous optimization of x- and y-coordinates subject to inequality constraints on positions. Klau et al. presented an integer linear programming model for optimal two-dimensional compaction, solvable in polynomial time for fixed embeddings and yielding area reductions up to 50% in benchmarks compared to naive placements. These methods are widely applied in layout design, where orthogonal grid drawings model routing channels and minimize wire lengths in integrated circuits.

Advanced Algorithms

Planar Embedding Algorithms

Planar embedding algorithms focus on determining whether a graph is planar and, if so, constructing a crossing-free embedding in the plane, either combinatorially (specifying the cyclic order of edges around vertices) or geometrically (assigning coordinates to vertices). These algorithms are foundational for graph drawing, as they guarantee zero edge crossings for planar graphs, enabling further aesthetic refinements like straight-line representations. Seminal methods combine planarity testing with embedding construction, often leveraging (DFS) trees to efficiently handle the topological constraints of planarity. A cornerstone of planarity testing is the from 1974, which determines in linear time whether an arbitrary undirected graph with n vertices admits a planar embedding. The approach builds a and computes lowpoint values for each vertex, defined as the smallest discovery time reachable from the subtree rooted at that vertex, including via back edges. By comparing lowpoint values to discovery times, the algorithm identifies articulation points and interleaves paths to construct a potential embedding; if no contradictions arise in the ordering of back edges relative to the tree, the graph is planar, and a combinatorial embedding is output. This O(n) time complexity arises from a single augmented with stack-based path merging, making it highly efficient for large graphs. For constructing combinatorial embeddings, the left-right planarity test provides an elegant DFS-based characterization, originally formulated by de Fraysseix and Rosenstiehl in 1982. In this method, a DFS tree is constructed, and back edges are classified as "left" or "right" relative to the tree edges based on their angular position in a hypothetical embedding, ensuring that left edges do not cross right edges in the fundamental cycles they form. The test verifies planarity by checking that the left and right sets induce non-intersecting orderings around each vertex, allowing the cyclic order of edges to be built incrementally without crossings. This criterion enables linear-time embedding for general planar graphs and has influenced practical implementations due to its simplicity and avoidance of complex data structures. Straight-line planar embeddings, where edges are drawn as straight segments, can be derived from combinatorial embeddings using methods like the shift technique of de Fraysseix, Pach, and Pollack from 1990. Starting from a combinatorial embedding of a maximal planar graph (triangulation), the algorithm places the outer face vertices on a convex hull and incrementally adds internal vertices by shifting coordinates to maintain planarity and convexity. Specifically, for a vertex v added inside a face, its position is computed as the average of its neighbors' positions plus a small shift vector to avoid collinearities, ensuring all faces remain strictly convex. This produces a straight-line drawing on an O(n) × (2n − 4) grid in linear time, with vertices at integer coordinates. Central to such straight-line constructions is the canonical ordering, a vertex sequence σ = (v_1, v_2, ..., v_n) for 3-connected planar graphs that facilitates incremental drawing while preserving outer-face convexity. The ordering begins with two adjacent vertices v_1 and v_2 on the outer face, and for each subsequent v_i (3 ≤ i ≤ n), the neighbors of v_i in the subgraph induced by {v_1, ..., v_{i-1}} form a contiguous segment on the outer face of that subgraph, with v_i adjacent to at least two earlier vertices. This property ensures that adding v_i splits a face without introducing crossings, and the final drawing has the outer face as a convex polygon. Canonical orderings can be computed in O(n) time via DFS or SPQR-tree decompositions and are particularly efficient for 3-connected graphs, where Whitney's uniqueness theorem implies a single embedding class, simplifying the process. For directed acyclic graphs (DAGs), planar embedding algorithms extend to upward drawings, where all edges point upward (increasing y-coordinates). General upward planarity testing is NP-hard (Garg and Tamassia, 1995). For certain classes, such as single-source DAGs (biconnected with a specified root), it can be tested in linear time by reducing to planarity testing on an auxiliary undirected graph that encodes direction constraints (Bertolazzi et al., 1998). If upward planar, a straight-line upward embedding can be constructed using layered approaches or barycentric methods, ensuring monotonic edge directions and no crossings. These methods handle 3-connected cases efficiently by leveraging canonical-like orderings adapted for directions.

Crossing Minimization Techniques

Crossing minimization in graph drawing seeks to arrange vertices and edges to reduce the number of edge intersections, particularly in non-planar graphs where crossings are unavoidable. In layered graph drawings, where vertices are partitioned into parallel layers and edges connect consecutive layers, the problem focuses on ordering vertices within each layer to minimize inter-layer crossings. The objective is to minimize the total number of crossings, defined as the sum over all pairs of edges that intersect when drawn as straight lines between layers. The two-layer crossing minimization problem, where vertices are fixed in two parallel lines and only the ordering in one or both layers can be permuted, is NP-hard, even in the one-sided case where one layer's ordering is fixed. This complexity arises from reductions to ordering problems like . For multi-layer drawings, the problem is addressed through iterative sweeps: start with an initial ordering, then repeatedly apply two-layer minimization between consecutive layers until convergence, as in the . This layer-by-layer approximation assumes that minimizing local crossings reduces the global total, though it may not yield optimality. Key heuristics for two-layer crossing minimization include the barycenter method and the median method. The barycenter heuristic positions each vertex in the second layer at the average (barycenter) position of its neighbors in the first layer, iteratively refining the ordering to reduce crossings; it originates from early hierarchical drawing algorithms and provides a linear-time approximation with known bounds up to four times the optimum in worst cases. The median heuristic, which places each vertex at the median position of its neighbors, offers better performance on sparse graphs and an approximation ratio of 3 for the one-sided case, making it suitable for initial orderings in multi-layer sweeps. For global optimization in multi-layer settings, and evolutionary methods explore the search space more broadly than local heuristics. These represent layer orderings as chromosomes, using crossover and mutation to evolve solutions that minimize total crossings, often hybridized with barycenter or sifting for local improvements; a seminal hybridized genetic algorithm demonstrated superior results on dense digraphs compared to iterative heuristics alone. Recent evolutionary computation hybrids, such as simple evolutionary algorithms with swap mutations, achieve near-optimal crossings on planarizable instances and outperform traditional heuristics on benchmark suites, with runtime analyses confirming polynomial expected time for small perturbations. The total crossings in a layered drawing with orderings \pi_i for layer i can be approximated by summing pairwise inter-layer crossings: \text{crossings}(\pi_i, \pi_{i+1}) = \sum_{\substack{(u,v), (x,y) \\ u < x \text{ in } \pi_i \\ v > y \text{ in } \pi_{i+1}}} 1 where the sum counts inverting edge pairs between consecutive layers. Exact methods, such as formulations, solve the problem optimally for small instances (up to 50 vertices) by modeling orderings as variables and crossings as quadratic constraints linearized via big-M techniques; these provide benchmarks for heuristics but scale poorly due to .

Parameterized and Approximation Algorithms

In graph drawing, parameterized algorithms address the computational challenges of NP-hard problems by exploiting small parameters, such as the solution size or structural graph properties, to achieve fixed-parameter tractable (FPT) running times. A prominent example is the crossing number problem, which seeks the minimum number of edge crossings in a drawing of a G with n vertices. This problem is FPT when parameterized by the solution size k, the conjectured minimum crossing number; specifically, there exists an running in time O(f(k) n^2) for some f, deciding whether the crossing number is at most k and constructing such a if it exists. This result relies on expressing the problem in and applying Courcelle's theorem on graphs of bounded local in the drawing. Subsequent improvements have refined the dependence on n to linear time O(f(k) n), while maintaining the quadratic bound in early formulations like O(2^{O(k)} n^2). Recent unified frameworks extend these FPT techniques to variants of the crossing number, including bundled, edge, and color-constrained crossings on surfaces of bounded genus. For instance, a 2024 framework provides quadratic FPT algorithms for determining the minimum crossings in topological drawings under various constraints, such as k-planar or fan-crossing-free configurations, parameterized jointly by the number of crossings c and genus g. Similarly, for beyond-planar graphs, deciding if a graph admits a drawing with at most c crossings while avoiding specific forbidden crossing patterns (e.g., in k-planar or quasi-planar classes) is FPT in c for fixed pattern families. These advances, presented at the 2024 Graph Drawing Symposium, highlight how parameterization enables exact solutions for "almost planar" graphs with few crossings, improving scalability over brute-force methods. Treewidth serves as another key parameter for graph drawing, bounding the complexity of decompositions to facilitate dynamic programming approaches. Graphs of bounded treewidth admit efficient algorithms for planar embeddings and low-crossing drawings; for example, computing an optimal planar drawing (zero crossings) is solvable in time O(2^{O(t)} n) where t is the treewidth, via standard MSO encodings. Drawn tree decompositions further integrate drawing constraints directly into the decomposition process, enabling FPT algorithms for visualizing graphs with bounded treewidth while optimizing aesthetics like edge lengths or crossings. Approximation algorithms complement parameterized methods by providing near-optimal drawings in time, particularly for intractable objectives like minimizing crossings or area. While the general crossing number admits no -time approximation scheme (PTAS) unless NP problems are solvable in subexponential time, recent results yield subpolynomial approximations for restricted cases; for low-degree graphs (\Delta = O(1)), a randomized O(2^{O((\log n)^{7/8} \log \log n)} \cdot \Delta)-approximation runs in time. For dense graphs, deterministic algorithms approximate the crossing number up to an additive o(n^4) error in n^{2+o(1)} time, aiding practical of large networks. Ongoing research at institutions like TU Wien emphasizes parameterized techniques for visualization challenges, including human-in-the-loop interactions and right-angle crossing (RAC) drawings. For RAC drawings, where adjacent edges cross at most once at right angles, computing a k-bend RAC drawing is FPT in k, with algorithms running in $2^{O(k \log k)} n^{O(1)} time via kernelization to bounded treewidth instances. These developments, spanning 2023–2025, bridge theoretical parameterized complexity with practical graph drawing tools, focusing on parameters like bend count or treewidth to handle large-scale visualizations efficiently.

Applications

Network and Software Visualization

Graph drawing plays a crucial role in visualizing topologies, where nodes represent entities such as routers or switches and s depict connections like optic links or wireless transmissions. In large-scale networks, such as the , radial layouts are particularly effective for revealing hierarchical structures, positioning central hubs at the core and radiating outward to peripheral nodes to emphasize patterns and fault . For instance, the algorithm employs a parent-centric radial approach to distribute nodes evenly around nodes using assignment rules, minimizing crossings and ensuring uniform lengths, which is well-suited for exploring router hierarchies in networks with high diameters. This method achieves linear O(N), enabling efficient rendering of complex topologies while highlighting influential nodes like core routers. A notable application in network debugging occurred at in the late 1990s, where the SWIFT-3D system was developed to analyze massive telecommunication datasets, including graphs of call volumes and service coverage. Engineers used interactive node-link diagrams to trace anomalies, such as unexplained spikes in unanswered calls, revealing congestion tied to external events like radio contests in specific regions. SWIFT-3D integrated variable-resolution maps with pixel-oriented overviews and drag-and-drop queries, facilitating drill-down from global network views to local edge details for rapid fault isolation. Orthogonal edge drawings, featuring horizontal and vertical segments, are commonly employed in such diagrams, including those for networks, to enhance readability by aligning connections with grid-like topologies and reducing visual ambiguity in device interconnections. However, scalability poses significant challenges for graphs exceeding 100,000 s, as traditional -directed algorithms suffer from computational bottlenecks due to calculations, often failing to converge or rendering in hours on standard hardware. Visual clutter arises from overlaps and tangles in dense networks, limiting effective analysis without GPU acceleration or sampling techniques. Tools like Cosmograph address this by leveraging for GPU-based layouts, successfully visualizing up to one million s—such as a 475,448- dataset with over one million s—in interactive browser environments, though performance degrades with irregular densities. In software visualization, graph drawing supports the representation of structural relationships, such as UML class diagrams and , aiding developers in comprehending dependencies and control flows. For UML class diagrams, techniques like the GoVisual approach preprocess graphs to ensure uniform upward directions and planarity, followed by orthogonal layouts that minimize bends and crossings while merging edges for clarity. This results in diagrams with zero crossings in complex hierarchies, outperforming earlier methods in readability for object-oriented designs. visualizations, which model method invocations as directed edges, employ interactive layouts encoding and ; the , for example, uses static and feasible path queries to navigate large codebases, improving success rates by 5.6 times and reducing task times significantly in empirical studies. Graphviz exemplifies practical application in software dependency visualization, generating layouts from DOT descriptions to depict module interdependencies in large programs. In maintenance scenarios, it illustrates relationships among code modifications—such as nodes for file changes pointing to impacted components—enabling testers to isolate subsets for verification and cut costs by identifying critical dependencies. Layered methods, briefly, can enhance these views for directed dependencies, though Graphviz's spring-based neato layout often suffices for undirected maintenance graphs.

Biological and Social Graph Drawings

Graph drawing plays a crucial role in visualizing biological networks, such as protein-protein interaction () networks, where represent proteins and edges denote physical or functional interactions derived from high-throughput experiments like yeast-two-hybrid assays. Force-directed algorithms are particularly effective for these networks, as they simulate physical forces to position densely connected closer together, thereby revealing functional clusters such as signaling pathways or protein complexes. Node attributes, including colors and shapes, are often used to encode biological properties, like annotations for molecular function or subcellular localization, enhancing interpretability for researchers studying cellular processes. Metabolic pathways, another key biological application, are drawn to illustrate biochemical reactions and regulatory dependencies, with force-directed layouts helping to compact hierarchical flows while preserving directional edges from substrates to products. The open-source platform Cytoscape, first released in , has become a standard tool for these visualizations, enabling the integration of data (e.g., expression levels) with to highlight dynamic changes in pathway activity. However, real-world biological data often introduces noise from experimental variability or incomplete interactions, complicating accurate cluster detection and requiring robust preprocessing steps like edge weighting based on confidence scores. In the 2020s, visualizing large-scale biological networks—such as those from single-cell sequencing or multi-omics —presents challenges, with datasets exceeding millions of nodes overwhelming traditional force-directed methods due to computational demands and visual clutter. Advances in sampling techniques and hybrid layouts address these issues, allowing interactive exploration of networks while maintaining biological insights, though full automation remains limited by data heterogeneity. For social graphs, drawing techniques adapt to friendship networks and collaboration graphs, where force-directed spring layouts emphasize community structures by attracting connected nodes and repelling others, uncovering social clusters like interest groups or professional circles. In examples from platforms like , these layouts visualize ego networks of users' connections, with edge thickness representing interaction frequency to illustrate tie strengths in real-time social dynamics. , an open-source tool developed in the late 2000s, facilitates such drawings through interactive filtering and dynamic attributes, supporting analyses of evolving networks from sources like or co-authorship databases. Noise in social data, such as self-reported ties or platform biases, poses challenges akin to biological networks, often mitigated by statistical edge validation to ensure reliable community detection.

Emerging Uses in AI and Machine Learning

Graph drawing techniques are increasingly integrated with and to address challenges in visualizing large-scale, complex graphs, particularly where traditional algorithms falter in scalability and adaptability. enhancements, such as Graph Neural Networks (GNNs), have been employed to predict and generate graph layouts by learning structural patterns from data. For instance, GNN-based models can accelerate network layout generation, achieving up to 100 times faster computation compared to classical force-directed methods while maintaining comparable aesthetic quality on datasets like social networks and biological graphs. These approaches treat graph drawing as a task, where node positions are predicted based on adjacency and feature embeddings, enabling dynamic adjustments for interactive visualizations. Diffusion models represent another advancement, offering probabilistic generation of placements that respect structures. The FrameDiff model, an SE(3)-equivariant approach, generates protein backbone structures—modeled as graphs—by iteratively denoising rigid frames, outperforming methods in producing novel, functional conformations with a success rate exceeding 50% on unseen protein families from the . This technique extends to general graph drawing by sampling layouts that minimize crossings and optimize spacing through learned noise reversal, particularly useful for hierarchical or molecular graphs where exact solutions are intractable. Large language models (LLMs) are being leveraged for interpreting graph drawings through prompted visual analysis, enhancing human-AI collaboration in graph comprehension. An empirical study demonstrated that LLMs, such as , achieve up to 85% accuracy in tasks like identifying graph properties (e.g., or ) when provided with textual descriptions of drawings generated via force-directed or layered layouts, with performance improving via iterative prompting on aesthetic variations. This application bridges graph drawing with , allowing LLMs to generate insights or refine layouts based on user queries about visualized data. In , techniques like t-SNE and UMAP are augmented with to produce embeddings that preserve topological properties for . A unifying framework integrates these methods with graph drawing principles, such as planarity and crossing numbers, to validate and refine low-dimensional projections; for example, it uses neighborhood graphs to quantify distortion in embeddings of high-dimensional datasets. This hybrid approach ensures that reduced embeddings not only cluster similar nodes but also maintain drawable graph structures suitable for downstream analysis. Evolutionary computation has emerged as a method for optimizing layered drawings, particularly in minimizing crossings. A 2024 analysis showed that evolutionary algorithms, using operators on orderings, achieve polynomial-time approximations for one-sided crossing minimization in layered layouts, with runtime guarantees such as Θ(n²) expected iterations for certain operators like swaps, demonstrating strong performance on instances that can be drawn crossing-free. Recent Graph Drawing symposia from 2023 to 2025 have highlighted such integrations, including sessions on geometric for layout generation and parameterized algorithms tailored to AI-driven challenges.

Implementation Tools

Open-Source Libraries

Open-source libraries for graph drawing provide extensible frameworks that enable developers, researchers, and data scientists to implement, customize, and integrate drawing algorithms into applications without proprietary constraints. These tools often support core techniques such as force-directed layouts and planar embeddings, while fostering community-driven enhancements through platforms like GitHub. Key examples include longstanding projects like Graphviz and more recent integrations such as PyGraphviz extensions, which have seen updates in the 2020s to improve compatibility with modern data science workflows. Graphviz is a foundational open-source graph visualization package, initially developed at AT&T Labs in the early 1990s and fully released as open source in 2000. It employs the DOT language for graph specification and offers multiple layout engines, including neato and fdp for force-directed methods, circo for circular arrangements, and twopi for radial drawings, with support for representations using engines such as or fdp. Widely adopted for its simplicity and output formats like and PDF, Graphviz integrates well with scripting languages and remains actively maintained on . NetworkX, a library for creating, manipulating, and analyzing , originated in 2002 at . It provides drawing capabilities through backends and an interface to via PyGraphviz, supporting algorithms such as spring_layout for force-directed simulations and planar_layout for straight-line planar drawings. Its seamless integration with Python's data science ecosystem, including libraries like and , makes it ideal for network visualization in research and analytics, with ongoing community contributions via repositories. D3.js (Data-Driven Documents) is a for building interactive web-based visualizations, released in by as a successor to the Protovis framework. It excels in dynamic graph drawings through its force simulation module, which implements force-directed layouts with features like node repulsion, link attraction, and collision avoidance for scalable, browser-rendered graphs. D3.js supports planar and hierarchical structures via additional modules like d3-hierarchy, enabling customizable, SVG-based outputs for web applications. The Open Graph Drawing Framework (OGDF) is a comprehensive C++ library dedicated to graph algorithms, launched in 2005 as an open-source evolution of the commercial OGDL. It includes advanced implementations for planar embeddings using methods like the Boyer-Myrvold planarity test and force-directed layouts via multilevel approaches, alongside tools for crossing minimization and layered drawings. OGDF's modular design allows integration into larger C++ projects, with bindings available through ogdf-python for broader accessibility in the 2020s. PyGraphviz extends Graphviz's functionality as a Python interface, enabling direct creation, editing, and rendering of DOT-described graphs within Python scripts, with version 1.13 released in 2024 incorporating enhancements for better compatibility and error handling. It bridges Graphviz's layout engines with Python's ecosystem, supporting force-directed and hierarchical drawings while allowing layout plugins for custom extensions. Community-driven updates on have focused on 2020s improvements, such as improved support and integration with Jupyter notebooks for interactive workflows.

Commercial and Integrated Software

Commercial graph drawing software provides proprietary solutions with built-in support, , and integration capabilities for environments, often emphasizing ease of use and over open customization. These tools typically incorporate automatic layout algorithms for node-link diagrams, supporting applications from network analysis to optimization modeling. yEd, developed by yWorks, is a free desktop application that enables users to create, import, edit, and automatically arrange high-quality diagrams using proprietary layout engines. It supports various graph types, including hierarchical, orthogonal, and organic layouts, and runs on Windows, macOS, and Unix/Linux platforms without requiring licensing fees, though its core engine remains proprietary. This tool is widely adopted for professional diagramming due to its intuitive interface and export options to formats like PDF and SVG. Microsoft Visio offers robust diagramming features within the Microsoft 365 ecosystem, including templates for flowcharts, organization charts, and network diagrams that visualize graph structures. It supports data-linked diagrams where graph elements update dynamically from sources like Excel, and includes intelligent features for validating structured graphs against rules. Pricing follows a subscription model, with Visio Plan 1 at $5/user/month for web access and Plan 2 at $15/user/month for desktop features, making it suitable for collaborative enterprise use. IBM ILOG Views Graph Layout integrates graph drawing directly into optimization workflows, providing high-level services for readable representations of in decision support systems. Part of the broader ILOG CPLEX Optimization Studio, it handles node-link visualizations alongside solvers for linear and mixed-integer programming, often used in and scenarios. Licensing is enterprise-focused, with costs varying by deployment scale, typically starting in the thousands for commercial use. In platforms, graph drawing is embedded via plugins for network visualization. Tableau supports extensions like the Network Chart Extension, which renders node-link graphs to highlight relationships, integrable with dashboards for interactive exploration. Similarly, Power BI features the Powerviz Network Graph visual, allowing users to depict vertices and edges from datasets, with support for filtering and drilling down into connections. These integrations prioritize seamless flow without requiring separate tools. MATLAB's Graph and Network Algorithms toolbox includes functions like graph for creating undirected graphs and plot for drawing them, enabling visualization of adjacency matrices and edge properties in a computational environment. It supports layered and circular layouts for analyzing connectivity in scientific data, with scalability to thousands of nodes via optimized plotting. Commercial licensing for MATLAB starts at around $2,150 for a base installation, with toolbox add-ons extra. In cybersecurity, employs graph visualization through integrations like Graphistry to map network patterns and investigate threats, rendering interactive node-link diagrams from log data for . This setup allows analysts to explore millions of events, identifying hidden connections in real-time. 's pricing is usage-based, often exceeding $10,000 annually for mid-scale deployments. Recent cloud integrations enhance scalability for large graphs. , a managed , connects with visualization tools like Graphistry for rendering millions of nodes and relationships, supporting updates for GPU-accelerated layouts in AWS environments. Similarly, G.V() provides a client for interactive exploration of Neptune data, handling queries on graphs with billions of edges. Software, integrated with Neptune, visualizes graphs up to millions of elements, emphasizing performance for enterprise analytics. These solutions scale via cloud resources, with Neptune pricing at $0.20 per million I/O requests for Standard instances plus instance costs starting at $0.036 per hour (e.g., db.t3.small in US East (N. Virginia)) as of November 2025.

References

  1. [1]
    Full article: An annotated review on graph drawing and its applications
    In this paper, we have reviewed various studies to present the unsolved problems in the domain of graph drawing and to identify its applications in real life.
  2. [2]
    Graph drawing algorithms - ACM Digital Library
    In this section, we provide a brief overview of the graph drawing problem. Section 6.2.1 outlines the main conventions for drawing graphs, and Section 6.2.2 ...
  3. [3]
    [PDF] Algorithms for Drawing Graphs: an Annotated Bibliography - Brown CS
    Several data presentation problems involve drawing graphs so that they are easy to read and un- derstand. Examples include circuit schematics and software ...
  4. [4]
    [PDF] Planar Orthogonal and Polyline Drawing Algorithms - Brown CS
    A straight-line drawing of a graph is a drawing where every edge is a ... An orthogonal drawing of a graph is a polyline drawing where every edge is ...
  5. [5]
    [PDF] 10 GEOMETRIC GRAPH THEORY - CSUN
    Geometric graph: A graph drawn in the plane by (possibly crossing) straight- line segments; i.e., a pair (V (G),E(G)), where V (G) is a set of points ('vertices ...
  6. [6]
  7. [7]
    [PDF] 55 GRAPH DRAWING - CSUN
    1. Types of drawings: (a) polyline drawing of. K3,3; (b) straight-line drawing of K3,3; (c) orthogonal drawing of K3,3; (d) planar up- ward drawing of an ...
  8. [8]
    [PDF] Drawing Dynamic Graphs Without Timeslices
    graphs which is not based on timeslices, and a dynamic graph drawing ... Related work in static graph drawing [27,33,40] searches for the best scaling ... Online ...
  9. [9]
    Über eine Eigenschaft der ebenen Komplexe - EuDML
    Wagner, K.. "Über eine Eigenschaft der ebenen Komplexe." Mathematische Annalen 114 (1937): 570-590. <http://eudml.org/doc/159935>. @article{Wagner1937,Missing: 1936 PDF
  10. [10]
    [PDF] On straight line representation of planar graphs.
    On straight line representation of planar graphs. By ISTVÁN FÁRY.in Szeged. In the present note I shall prove that if a finite graph can be.<|control11|><|separator|>
  11. [11]
    [PDF] HOW TO DRAW A GRAPH
    In this paper we are concerned mainly with nodally 3-connected graphs, but a specialization to 3-connected graphs is made in § 12. In § 3 we discuss conditions ...
  12. [12]
    Methods for Visual Understanding of Hierarchical System Structures
    Two methods are developed: theoretical and heuristic. They determine vertex positions by first ordering vertices in each level, then horizontal positions.
  13. [13]
    [PDF] A heuristic for graph drawing - UBC Computer Science
    reports on a heuristic method for drawing graphs. than 30 vertices,. Introduction wertices between. A heuristic for graph drawing. Peter Eades. University of ...
  14. [14]
    International Symposium on Graph Drawing - Wikipedia
    The International Symposium on Graph Drawing (GD) is an annual academic conference ... History. edit. The first symposium was held in Marino, near Rome, Italy, in ...
  15. [15]
    The 31st International Symposium on Graph Drawing and Network ...
    The symposium focuses on geometric representation of graphs and network visualization, held in Palermo, Italy, September 20-22, 2023. It is the main annual ...
  16. [16]
    32nd International Symposium on Graph Drawing and Network ...
    Oct 28, 2024 · The 32nd International Symposium on Graph Drawing and Network Visualization (GD 2024) was held in Vienna, Austria, September 18-20, 2024.
  17. [17]
    The 33rd International Symposium on Graph Drawing and Network ...
    The symposium on Graph Drawing and Network Visualization has been the main annual event in this area for more than 30 years.Missing: history | Show results with:history
  18. [18]
    [PDF] Graph Drawing - Algorithms for the Visualization of Graphs
    Graph drawing: algorithms for the visualization of graphs /. Giuseppe Di Battista ... ... Graph drawing addresses the problem of constructing geometric represen-.
  19. [19]
    [PDF] The Aesthetics of Graph Visualization - Eurographics Association
    Abstract. The discipline of graph visualization produces pictorial representations of node–link structures. Much effort has been directed toward making such ...
  20. [20]
    Improving multiple aesthetics produces better graph drawings
    The final representations of graphs are usually in the form of so-called node-link diagrams. According to Di Battista et al. [7], layout requirements used in ...
  21. [21]
    A Network Segmentation Diagram Cheat Sheet - Nile Secure
    Solid lines typically indicate physical connections, while dashed lines might represent virtual or logical connections. Arrows show the direction of data ...Missing: conventions | Show results with:conventions
  22. [22]
    [PDF] Efficient, Proximity-Preserving Node Overlap Removal - Graphviz
    The core problem in avoiding or removing overlaps is to retain the structural information inherent in a layout while minimizing the additional area required.Missing: convention | Show results with:convention
  23. [23]
    Handbook of Graph Drawing and Visualization - 1st Edition
    In stock Free deliveryIt covers topological and geometric foundations, algorithms, software systems, and visualization applications in business, education, science, and engineering.
  24. [24]
  25. [25]
    Systems Biology Graphical Notation (SBGN)
    The Systems Biology Graphical Notation (SBGN) project, an effort to standardise the graphical notation used in maps of biological processes.Symbols · Figure to SBGN · Learning SBGN · How to cite
  26. [26]
    Sur le problème des courbes gauches en Topologie - EuDML
    Kuratowski, Casimir. "Sur le problème des courbes gauches en Topologie." Fundamenta Mathematicae 15.1 (1930): 271-283. <http://eudml.org/doc/ ...
  27. [27]
    [PDF] The Graph Crossing Number and its Variants: A Survey
    Dec 20, 2011 · Abstract. The crossing number is a popular tool in graph drawing and visualization, but there is not really just one crossing number; ...
  28. [28]
    [PDF] Crossing Number is NP-Complete | Vol. 4, No. 3
    To prove that CROSSING NUMBER is NP-complete, we must show that a known NP-complete problem can be transformed to it. Our "known" NP-complete problem will ...
  29. [29]
    [PDF] The Multi-Dimensional Landscape of Graph Drawing Metrics
    The Aspect Ratio is the ratio of the height of the drawing's bounding box to its width (or vice versa, depending on which is greater). • Crossing Angle (CA).
  30. [30]
    An Algorithm for Estimating the Crossing Number of Dense Graphs ...
    Oct 21, 2025 · With this in mind, for an edge-weighted graph G on n vertices we define its crossing density as \({\textrm{cd}}(G)={\textrm{cr}}(G)/n^4\) and ...
  31. [31]
    [PDF] Force-Directed Drawing Algorithms - Brown CS
    [DETT99] Giuseppe Di Battista, Peter Eades, Roberto Tamassia, and Ioannis G. Tol- lis. Graph Drawing: Algorithms for the Visualization of Graphs. Prentice.<|control11|><|separator|>
  32. [32]
    An algorithm for drawing general undirected graphs - ScienceDirect
    This paper presents an algorithm for drawing general undirected graphs, by Tomihisa Kamada and Satoru Kawai.Missing: paper | Show results with:paper
  33. [33]
    Graph drawing by force‐directed placement - Wiley Online Library
    We present a modification of the spring-embedder model of Eades [Congressus Numerantium, 42, 149–160, (1984)] for drawing undirected graphs with straight edges.
  34. [34]
    [PDF] More Flexible Radial Layout
    Abstract. We describe an algorithm for radial layout of undirected graphs, in which nodes are constrained to concentric circles centered at the origin.
  35. [35]
    [PDF] Hierarchical Drawing Algorithms - Brown CS
    Far and away the most popular method of drawing directed graphs is the Sugiyama method, or Sugiyama framework [STT81], which separates the nodes into layers.
  36. [36]
    On Embedding a Graph in the Grid with the Minimum Number of ...
    In this paper, an algorithm is presented that computes a region preserving grid embedding with the minimum number of bends in edges.
  37. [37]
    On the Computational Complexity of Upward and Rectilinear ...
    Roberto Tamassia, On embedding a graph in the grid with the minimum number of bends, SIAM J. Comput., 16 (1987), 421–444. Abstract · Web of Science · Google ...
  38. [38]
    A unified approach to visibility representations of planar graphs
    Dec 1, 1986 · Tamassia, R., Tollis, I.G. A unified approach to visibility representations of planar graphs. Discrete Comput Geom 1, 321–341 (1986). https ...
  39. [39]
    Optimal Compaction of Orthogonal Grid Drawings (Extended Abstract)
    Apr 30, 1999 · We consider the two-dimensional compaction problem for orthogonal grid drawings in which the task is to alter the coordinates of the ...
  40. [40]
    Orthogonal drawings of graphs for the automation of VLSI circuit ...
    Abstract. This article shows the recent developments on orthogonal drawings of graphs which have applications for the automation of VLSI circuit design.
  41. [41]
    Efficient Planarity Testing | Journal of the ACM - ACM Digital Library
    This paper describes an efficient algorithm to determine whether an arbitrary graph G can be embedded in the plane. The algorithm may be viewed as an ...
  42. [42]
    A Depth-First-Search Characterization of Planarity - ScienceDirect.com
    The main theorem of this paper displays a property of the Trémaux trees of a graph, which constitutes a new characterization of planarity, and justifies the ...
  43. [43]
    How to draw a planar graph on a grid | Combinatorica
    Jan 12, 1989 · De Fraysseix, H., Pach, J. & Pollack, R. How to draw a planar graph on a grid. Combinatorica 10, 41–51 (1990). https://doi.org/10.1007 ...
  44. [44]
    Edge crossings in drawings of bipartite graphs | Algorithmica
    Nov 15, 1991 · The performance of the commonly employed “barycenter” heuristic for this problem is analyzed. An alternative method, the “median” heuristic, is ...Missing: original | Show results with:original
  45. [45]
    [PDF] Minimizing crossings in a hierarchical digraphs with a hybridized ...
    Oct 31, 2008 · We have developed a hybridized Genetic Algorithm for straight-line crossing minimization in hierarchical drawings of digraphs. Computational ...
  46. [46]
    Evolutionary Algorithms for One-Sided Bipartite Crossing Minimisation
    Sep 5, 2024 · One-Sided Bipartite Crossing Minimisation (OBCM) is ordering vertices on a second layer of a bipartite graph to minimize edge crossings, given ...Missing: hybrids | Show results with:hybrids
  47. [47]
    Heuristics and meta-heuristics for 2-layer straight line crossing ...
    May 1, 2003 · This paper presents extensive computational experiments to compare 12 heuristics and 2 meta-heuristics for the problem of minimizing straight-line crossings in ...
  48. [48]
    Computing crossing numbers in quadratic time - ACM Digital Library
    We show that for every fixed k\ge 0 there is a quadratic time algorithm that decides whether a given graph has crossing number at most k and, if this is the ...
  49. [49]
    A Unified FPT Framework for Crossing Number Problems - arXiv
    Sep 30, 2024 · The basic (and traditional) crossing number problem is to determine the minimum number of crossings in a topological drawing of an input graph ...
  50. [50]
    Crossing Numbers and Parameterized Complexity - SpringerLink
    Crossing Numbers and Parameterized Complexity · Michael J. Pelsmajer, · Marcus Schaefer & · Daniel Štefankovič.
  51. [51]
    Drawn Tree Decomposition: New Approach for Graph Drawing ...
    Oct 9, 2023 · We introduce a novel form of tree decomposition that, roughly speaking, does not decompose (only) a graph, but an entire drawing.
  52. [52]
    Hardness of Approximation for Crossing Number
    Jul 19, 2012 · In a recent paper with Mohar [4] we have shown that computing the crossing number for near-planar graphs is NP-hard. A graph is near-planar if ...Missing: original | Show results with:original
  53. [53]
    A Subpolynomial Approximation Algorithm for Graph Crossing ...
    Feb 14, 2022 · This is the first approximation algorithm for the problem that achieves a subpolynomial in n approximation factor (albeit only in graphs whose maximum vertex ...
  54. [54]
    Parameterized Graph Drawing - Algorithms and Complexity Group
    The project focuses on developing the tools and frameworks that will facilitate the parameterized analysis of central problems in graph drawing and ...
  55. [55]
    None
    ### Summary of PLANET Radial Layout Algorithm
  56. [56]
    Visualizing large-scale telecommunication networks and services
    This paper describes SWIFT-3D, an integrated data visualization and exploration system created at AT&T Labs for large scale network analysis. SWIFT-3D ...Missing: 1990s | Show results with:1990s
  57. [57]
    Drawing Orthogonal Diagrams - yWorks
    Here, we describe several graph layout algorithms that produce orthogonal drawings. All of these algorithms are supported by yFiles, a commercial programming ...Layered Drawing Algorithm · Edge Routing Algorithms · Series-Parallel Drawing...
  58. [58]
    How to Visualize a Graph with a Million Nodes - Nightingale
    Aug 23, 2022 · Large-scale graph visualizations are tricky. The more nodes and edges you have in your network, the more difficult it is to compute the ...
  59. [59]
    ForceAtlas2, a Continuous Graph Layout Algorithm for Handy ...
    Its implementation of adaptive local and global speeds gives good performances for network of fewer than 100000 nodes, while keeping it a continuous layout (no ...Missing: scalability challenges
  60. [60]
    [PDF] A New Approach for Visualizing UML Class Diagrams
    A UML class diagram there- fore can be modelled as a graph G = (V,A,E) consisting of two kinds of connections: arcs representing the generalizations in the set ...
  61. [61]
    [PDF] Visualizing Call Graphs - CMU School of Computer Science
    The interactive call graph visualiza- tion encodes a number of properties that help developers answer questions about causality, ordering, type membership, ...
  62. [62]
    Module Dependencies - Graphviz
    Oct 2, 2022 · The graph represents dependencies between modifications to a large program. Because testing such programs is difficult and expensive, the graph ...
  63. [63]
    Cytoscape: An Open Source Platform for Complex Network Analysis ...
    Cytoscape is an open source software platform for visualizing complex networks and integrating these with any type of attribute data.Download · Intro · Who is Using Cytoscape? · Cytoscape Web
  64. [64]
    Grand Challenges in Bioinformatics Data Visualization - Frontiers
    One of the overarching grand challenges in BioVis is to use these advances to improve research, communication, training, and clinical practices. Publishing ...
  65. [65]
    Gephi - The Open Graph Viz Platform
    Gephi is the leading visualization and exploration software for all kinds of graphs and networks. Gephi is open-source and free.Download · Applications · Quickstart · Gephi plugins
  66. [66]
    Accelerating network layouts using graph neural networks - PMC
    Mar 21, 2023 · The authors propose a Graph Neural Network based algorithm with improved speed and the quality of graph layouts, which allows for fast and informative ...
  67. [67]
    [2109.10061] Graph Neural Networks for Graph Drawing - arXiv
    Sep 21, 2021 · In this paper, we propose a novel framework for the development of Graph Neural Drawers (GND), machines that rely on neural computation for constructing ...
  68. [68]
    [PDF] SE(3) diffusion model with application to protein backbone generation
    We assess the ability of FrameDiff to generalize beyond the training set and produce novel backbones by comparing the similarity to known structures in the PDB.<|separator|>
  69. [69]
    SE(3) diffusion model with application to protein backbone generation
    Feb 5, 2023 · A diffusion model over rigid bodies in 3D (referred to as frames) has shown success in generating novel, functional protein backbones that have not been ...Missing: graph | Show results with:graph
  70. [70]
    [2505.03678] Graph Drawing for LLMs: An Empirical Evaluation - arXiv
    May 6, 2025 · We investigate how the model's performance is affected by the chosen layout paradigm, the aesthetics of the drawing, and the prompting technique ...
  71. [71]
    When Dimensionality Reduction Meets Graph (Drawing) Theory
    Within this context, we outline how GD theory and drawing techniques can contribute to the efficacy of DR approaches in generating, validating, and visualizing ...
  72. [72]
    Evolutionary Computation Meets Graph Drawing - ACM Digital Library
    We show that the simplest and cheapest mutation operator, swap, shows excellent performance on instances that can be drawn crossing-free.Missing: paper | Show results with:paper
  73. [73]
    New Frontiers of Parameterized Complexity in Graph Drawing
    Ashim Garg and Roberto Tamassia. On the computational complexity of upward ... Petr Hlinený and Abhisekh Sankaran. Exact crossing number parameterized ...Missing: 1997 | Show results with:1997
  74. [74]
    Drawing — NetworkX 3.5 documentation
    NetworkX provides basic functionality for visualizing graphs, but its main goal is to enable graph analysis rather than perform graph visualization.Graph · Draw_networkx · Draw_networkx_nodes · Draw_networkx_labels
  75. [75]
    D3 by Observable | The JavaScript library for bespoke data ...
    D3 is a JavaScript library for bespoke data visualization, allowing custom dynamic visualizations and DOM manipulation based on data.Missing: Graphviz NetworkX OGDF PyGraphviz
  76. [76]
    About - OGDF
    History. OGDF (Open Graph Drawing Framework) went live in 2005, based on the formerly commercial OGDL (Oreas Graph Drawing Library), which is turn was heavily ...
  77. [77]
    OGDF – Open Graph Drawing Framework
    OGDF is a self-contained C++ library for graph algorithms, in particular for (but not restricted to) automatic graph drawing. It offers sophisticated algorithms and data structures to use within your own applications or scientific projects.
  78. [78]
    ogdf-python - PyPI
    ogdf-python uses the black magic of the awesome cppyy library to automagically generate python bindings for the C++ Open Graph Drawing Framework (OGDF).
  79. [79]
    Python interface to Graphviz — PyGraphviz 1.14 documentation
    Sep 29, 2024 · PyGraphviz is a Python interface to the Graphviz graph layout and visualization package. With PyGraphviz you can create, edit, read, write, and draw graphs ...Install · Tutorial · Gallery · Reference
  80. [80]
    Python interface to Graphviz graph drawing package - GitHub
    PyGraphviz is a Python interface to the Graphviz graph layout and visualization package. With PyGraphviz you can create, edit, read, write, and draw graphs ...
  81. [81]
    yEd - Graph Editor - yWorks
    yEd is a free desktop application to quickly create, import, edit, and automatically arrange diagrams. It runs on Windows, macOS, and Unix/Linux.Features · Download · Diagram editors · yEd Live
  82. [82]
    Microsoft Visio: Diagramming & Flowcharts | Microsoft 365
    Try Microsoft Visio, the best diagramming software for flowcharts, data visualization, and integrated workflows. Boost team collaboration and productivity.Visio in Microsoft 365 · Compare Visio Options · Visio Viewer · Visio Plan 2
  83. [83]
    yEd Graph Editor - Features - yWorks
    yEd is a free desktop application to quickly create, import, edit, and automatically arrange diagrams. It runs on Windows, macOS, and Unix/Linux.
  84. [84]
    yEd Software Pricing, Alternatives & More 2025 | Capterra
    Rating 4.5 (16) Sep 28, 2025 · On-premise graph editor that helps create, import, arrange and export diagrams manually or through automatic layout algorithms.
  85. [85]
    Compare Visio versions and features - Microsoft Support
    Intelligent diagramming ; Validate your structured diagrams against pre-defined rules and fix the issues identified ; Create a report of shape data that lists the ...Which Visio Plan Is The Best... · Intelligent Diagramming · Templates, Stencils, And...
  86. [86]
    [PDF] IBM ILOG Views Graph Layout V5.3 User's Manual
    The Graph Layout package provides high-level, ready-to-use graph drawing services that allow you to obtain readable representations easily. This User's Manual ...
  87. [87]
    IBM ILOG CPLEX Optimization Studio
    IBM® ILOG® CPLEX® Optimization Studio is decision optimization software for building and solving complex optimization models.Licensing options · Resources · IBM academic initiative · Constraint program solvers
  88. [88]
    [PDF] IBM ILOG CPLEX Optimization Studio CPLEX User's Manual
    IBM ILOG CPLEX offers C, C++, Java, .NET, and Python libraries that solve linear programming (LP) and related problems. Specifically, it solves linearly or.
  89. [89]
    Network | Tableau Exchange
    Enhance your analytics with the Network Chart Extension for Tableau, a robust visualization tool that emphasizes connections and relationships within your data.Missing: Power | Show results with:Power
  90. [90]
    Network Graph by Powerviz - Microsoft Marketplace
    The Powerviz Network Graph is a visual representation of objects (called nodes or vertices) and the relationships or connections (called edges or links) ...Missing: Tableau plugins
  91. [91]
    Graph with undirected edges - MATLAB - MathWorks
    Code generation for graph objects only supports the following object functions: addedge , addnode , adjacency , conncomp , degree , edgecount , indegree , ...
  92. [92]
    Types of MATLAB Plots - MATLAB & Simulink - MathWorks
    There are various functions that you can use to plot data in MATLAB. This table classifies and illustrates the common graphics functions.
  93. [93]
    fplot - Plot expression or function - MATLAB - MathWorks
    This MATLAB function plots the curve defined by the function y = f(x) over the default interval [-5 5] for x.Description · Examples · Input Arguments · Name-Value Arguments
  94. [94]
    Visualising Network Patterns with Splunk and Graphistry
    Jul 18, 2024 · Graph visualisation is necessary to understand and interpret network data. This can also be achieved in Splunk and Splunkbase comes to the ...
  95. [95]
    Supercharge Cybersecurity Investigations with Splunk and Graphistry
    Feb 14, 2024 · Interactive graph visualization is essential for such analyzes to quickly navigate through larger datasets and find the connections of interest.
  96. [96]
    Graphistry - Amazon Neptune - AWS Documentation
    Amazon Neptune graph database enables querying highly connected datasets using graph query languages, providing high availability and fully managed database ...
  97. [97]
    G.V() graph database client - Amazon Neptune - AWS Documentation
    G.V() is a comprehensive graph database client for Amazon Neptune that helps you explore, visualize, and interact with your graph data.
  98. [98]
    Amazon Neptune Graph Visualization - Tom Sawyer Software
    May 9, 2024 · Amazon Neptune Graph Visualization is a feature-rich platform designed for the visual exploration of complex graphs that consist of millions of relationships ...<|separator|>
  99. [99]
    Graph visualization tools for Neptune - AWS Documentation
    Amazon Neptune graph database enables querying highly connected datasets using graph query languages, providing high availability and fully managed database ...