Skip to content

GraphVisu is a web-based graph visualizer that enables you to input a graph and visualize it on a canvas. It presents nodes as circles and represents edges as lines or curves connecting the nodes. This tool provides an intuitive interface for exploring and analyzing graphs in a visually appealing manner.

om-ashish-soni/graph-visu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Graph Visualizer

This project is a web-based graph visualizer that allows you to input a graph and visualize it on a canvas. The visualization shows nodes as circles and edges as lines or curves connecting the nodes.

Usage

To use the graph visualizer, follow these steps:

  1. Open the index.html file in a web browser.
  2. The input area is provided at the top of the page. Enter your graph data in the input area.
    • Each line represents a node or an edge in the graph.
    • To define a node, enter a single number.
    • To define an edge, enter two numbers separated by a space, representing the source and destination nodes.
    • Example:
       5 3
       6 2
       6 4
       7 1
       7 6
      
  3. As you make changes in the input area, the graph visualization will update automatically in real-time.

Dependencies

This project utilizes the following external dependencies:

The project utilizes the following dependencies:

  • jQuery: A JavaScript library used for simplified DOM manipulation and event handling. It is included in the project through the following script tag:

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
  • SVG: The Scalable Vector Graphics (SVG) format is used to draw the nodes and edges of the graph in the updated version of the project. It provides a resolution-independent and high-quality representation of the graph.

To include SVG in the project, the tag is used. The SVG element is embedded within the HTML structure and acts as a container for the graphical elements of the graph.

<svg id="graph-svg"></svg>

These dependencies are necessary for the proper functioning of the graph visualizer.

Files

The project consists of the following files:

  • index.html: The main HTML file that contains the structure and elements of the web page.
  • script.js: The JavaScript file that handles the logic for parsing the input, generating the graph visualization, and drawing nodes and edges on the canvas.
  • style.css: The CSS file that defines the styles for the elements in the web page.

Customization

You can customize the appearance of the graph visualizer by modifying the CSS in the style.css file. The provided CSS defines styles for the canvas, input area, and other elements.

Notes

  • The graph visualizer uses the HTML5 canvas element to draw the nodes and edges.
  • The size and position of the nodes and edges are determined based on the input graph data.
  • Nodes are represented as circles with a fixed radius, and edges are drawn as lines or curves connecting the nodes.
  • The graph visualization is automatically updated whenever changes are made in the input area.
  • The visualization may not be optimized for large graphs with a high number of nodes or edges.

Feel free to explore and enhance this graph visualizer to suit your specific needs!

About

GraphVisu is a web-based graph visualizer that enables you to input a graph and visualize it on a canvas. It presents nodes as circles and represents edges as lines or curves connecting the nodes. This tool provides an intuitive interface for exploring and analyzing graphs in a visually appealing manner.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published