neo4j-contrib / neovis.js

Neo4j + vis.js = neovis.js. Graph visualizations in the browser with data from Neo4j.
Apache License 2.0
1.61k stars 324 forks source link

How to display partial attributes #307

Closed iceabing closed 1 year ago

iceabing commented 1 year ago

I just want to display part of these attributes, but I don't know how to modify this code:

    function: {
        title: NeoVis.objectToTitleHtml
    }
thebestnom commented 1 year ago
    function: {
        title: title => NeoVis.objectToTitleHtml(title, ["list of attributes"])
    }