Bar chart

A bar chart displays different categories and values in a bar layout. Choose the following:

  • Category: a text field. Categories are the bar labels.

  • Value: a numeric field. This determines the height of the bars.

Examples

Simple bar chart

A Cypher query for a bar chart which displays the number of products per category:

MATCH (p:Product)-[:PART_OF]->(c:Category)
RETURN c.categoryName AS Category, count(p) AS Products LIMIT 20
visualization bar chart
Figure 1. A bar chart displaying the number of products per category

Stacked Bar Chart

Coming soon.

Advanced settings

Coming soon.