mxgraph-factory
TypeScript icon, indicating that this package has built-in type declarations

4.2.0 • Public • Published

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

/mxgraph-factory/

    Package Sidebar

    Install

    npm i mxgraph-factory

    Weekly Downloads

    123

    Version

    4.2.0

    License

    Apache-2.0

    Unpacked Size

    3.96 MB

    Total Files

    9

    Last publish

    Collaborators

    • asual