cytoscape-effective-area
Description
Invoke fit/center with an effective area without changing the canvas size. (demo)
Dependencies
- Cytoscape.js ^3.2.0
Usage instructions
Download the library:
- via npm:
npm install cytoscape-effective-area
, - via unpkg:
https://unpkg.com/cytoscape-effective-area/dist/index.js
Import the library as appropriate for your project:
ES import:
;; cytoscape;
CommonJS require:
let cytoscape = ;let effectiveArea = ; cytoscape; // register extension
AMD:
;
Plain HTML/JS has the extension registered for you automatically, because no require()
is needed.
API
const ea = cy; // Change effective area getter functionea // Disableea // Re-enableea
Build targets
npm run build
: Build./src/**
intodist/index.js
npm run lint
: Run eslint on the source
Publishing instructions
This project is set up to automatically be published to npm and bower. To publish:
- Build the extension :
npm run build
- Commit the build :
git commit -am "Build for release"
- Bump the version number and tag:
npm version major|minor|patch
- Push to origin:
git push && git push --tags
- Publish to npm:
npm publish .