Skip to content

awesomenkj/ts-mxgraph

Repository files navigation

A Tiny Typescript Wrapper for mxgraph

Overview

A tiny wrapper around mxgraph that provides a configurable TypeScript compatible package.

Usage

npm i -D ts-mxgraph
import { mxgraph, mxgraphFactory } from "ts-mxgraph";

const { mxGraph, mxGraphModel } = mxgraphFactory({
    mxLoadResources: false,
    mxLoadStylesheets: false,
});

const container = document.getElementById("mxgraph-container");
if (container) {
    const model: mxgraph.mxGraphModel = new mxGraphModel();
    const graph: mxgraph.mxGraph = new mxGraph(container, model);
}

License

Apache 2.0 License

About

A Tiny CommonJS Wrapper for mxGraph

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •