Line chart

You can use a line chart to draw one or more lines in a two-dimensional plane. It has two numeric fields:

  • Value: The values used on the x-axis.

  • Dimension: The values used as the y-axis.

Examples

Basic line chart

Cypher query for a line chart which displays the number of products per order ID:

MATCH (o:Order)-[:ORDERS]->(p:Product)
RETURN o.orderID AS OrderID, count(p) as Products
products per order id
Figure 1. A line chart displaying the number of products per order ID

Multi-line chart

Advanced settings

Coming soon.