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

1.0.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i ts-mxgraph

Weekly Downloads

136

Version

1.0.0

License

ISC

Unpacked Size

3.94 MB

Total Files

9

Last publish

Collaborators

  • rabpeter