I can't see the column "Caption" on Neo4J Bloom to show properties on nodes

Hello, as you can see from the image I can't see the column "Caption" on Neo4J Bloom to show the properties on nodes. In my dataset I have just one label ("Athlete") and some properties linked to it ("sex", "country", ...). My goal is to show in addition to the node label (name of the athlete) also some properties when passing the mouse over the nodes (for example I would like to see also the sex and the country of the athlete). This column "Caption" should be my solution but I cannot see it. Could you explain me why and how to fix the problem? Thank you!

I attach the first part of my Cypher code that generates the database:

//New DB
//CREATE CONSTRAINT AthleteIdConstraint FOR (s:Athlete) REQUIRE s.id IS UNIQUE;
//CREATE INDEX FOR (s:Athlete) ON (s.label);

match (n) detach delete n;

// KEY Id Label
LOAD CSV WITH HEADERS FROM "file:///nodes.csv" AS csvLine FIELDTERMINATOR ';'
CREATE (s:Athlete{id: csvLine.athlete_id, label: csvLine.athlete_name, sex:csvLine.sex, country:csvLine.country});

We've made some updates to this functionality in Bloom, and using the latest version you should be able to select "Show on hover" for each property in the 'Text' tab of the legend panel.

2 Likes