Charts / Waterfall
Running total with incremental additions and subtractions. Mark the last bar with type: total.
Pass this structure to the
:data prop.
[
['label' => 'Opening', 'value' => 5000],
['label' => 'Revenue', 'value' => 8500],
['label' => 'COGS', 'value' => -3200],
['label' => 'Payroll', 'value' => -4100],
['label' => 'Closing', 'value' => 0, 'type' => 'total'],
]
<x-tayo::chart
type="waterfall"
:data="$data"
:height="420"
colors="default"
/>