4.0.8-rc1 • Published 4 years ago

ts-mxgraph-factory v4.0.8-rc1

Weekly downloads
9
License
Apache-2.0
Repository
github
Last release
4 years ago

Typescript 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

4.0.8-rc1

4 years ago

4.0.8

4 years ago

4.0.7

4 years ago

4.0.6

4 years ago