LineChart
Draws values over time, the standard chart for revenue trends and cash balances. Connect a table straight in: Vireo puts the date column on the X-axis and the measure on Y automatically, and you can override either with the column dropdowns on the node. An optional SeriesColumn input splits the data into one line per distinct value, such as one line per region.
Inputs
| Input | Accepts | Required |
|---|---|---|
X | Series (a list of numbers) | Optional |
Y | Series (a list of numbers) | Yes |
Labels | Any | Optional |
SeriesColumn | Text | Optional |
Title | Text | Optional |
Outputs
| Output | Produces |
|---|---|
Chart | Chart |
Settings
Typed in on the node or set by the assistant, not wired.
| Setting | Default | Notes |
|---|---|---|
Title | — | |
XAxisLabel | — | |
YAxisLabel | — | |
XAxisMin | Auto | |
XAxisMax | Auto | |
YAxisMin | Auto | |
YAxisMax | Auto | |
NumberFormat | G | Number format for the axis and labels, e.g. $#,##0 for dollars or 0.0% for percentages. |
ShowGridLines | True | |
ShowMarkers | True | |
ShowLegend | True | |
LegendPosition | Bottom | |
SmoothLines | False | |
ShowTrendLine | False | True overlays a fitted trend line, a quick read on direction without building a Regression node. |
Example
Your Monthly_Revenue table has Month (a date) and Revenue. Connect the table
to the LineChart: months land on the X-axis, revenue on Y, and the seasonality is
visible immediately. To compare regions, pick Region as the SeriesColumn to
get one line per region on the same date axis.