mxgraph-factory

A tiny CommonJS wrapper for mxGraph

Usage no npm install needed!

<script type="module">
  import mxgraphFactory from 'https://cdn.skypack.dev/mxgraph-factory';
</script>

README

mxGraph Factory

Overview

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

Usage

import { mxgraph, mxgraphFactory } from "mxgraph-factory";

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