how can I show multiple properties on neo4j graph.? -
in neo4j, how can display multiple properties on graph? example if need display person's name , birth_year.
when run query match (p:person) return p.person_id, p.birth_year limit 25
shows data in tabular format in neo4j browser. if click on graph says "no graph view available. have return nodes, relationships or paths see graph visualization."
any suggestions?
the neo4j 2.2 browser shows multiple properties when click on node, in bottom panel. mean need return nodes i.e. match (p:person) return p limit 25
able use graph visualization.
edit: can edit graph style sheet contain this:
node.person { color: #68bdf6; border-color: #5ca8db; text-color-internal: #ffffff; caption: '{person_id},{birth_year}'; }
but you'd have every kind of customization want.
Comments
Post a Comment