Library to create SVG visualisations for nano materials.
npm install nanoviz-svg
const nanoviz = require('nanoviz-svg')
const svg = nanoviz.nanoMaterial([
{label: 'CORE'},
{label: 'SHELL'},
{label: 'COATING'}
], 'enanomapper')
Create an SVG with three parts, a core, a shell and a coating.
nanoviz.nanoMaterial(Array<Object> parts, (Array<Object>|Object|String|null) style)
parts
: an array of objectspart
: object with mandatory property label
style
: a string denoting one of the built-in styles, an object extending an existing style, or a list of partspartStyle
: object with the following properties:color
: fill colortextColor
striped
: whether the circle is striped (DEPRECATED: usepattern
)pattern
: fill pattern ('striped'
,'dotted'
)radius
: radius of the circle (0 - 100)text
: pair of coordinates where the label should be (x: -100 - 200; y: -100 - 100); note that there is not much space
<div id="svg-container"></div>
<script src="https://bundle.run/nanoviz-svg"></script>
<script>
window.onload = function () {
const element = document.getElementById('svg-container')
element.innerHTML = nanovizSvg.nanoMaterial(/* see above */)
}
</script>