Skip to main content
WireKit
Copy for LLM

Column

type="column" produces vertical bars in ApexCharts vocabulary. (For horizontal bars see type="bar" — the inverse of Chart.js's convention.)

Note: column is an ApexCharts-specific chart type. Calling <x-wirekit-chart type="column"> while charts.library is chartjs throws TypeNotSupportedException with a switch-library hint.

Basic Example — Quarterly revenue

Quarterly revenue (€K)

Grouped — Multi-metric comparison

Revenue / Costs / Profit per quarter

Stacked

<x-wirekit-chart
    type="column"
    :labels="['Mon', 'Tue', 'Wed', 'Thu', 'Fri']"
    :datasets="[
        ['label' => 'Open',     'data' => [12, 18, 14, 22, 15]],
        ['label' => 'In progress', 'data' => [8, 12, 10, 18, 11]],
        ['label' => 'Resolved',  'data' => [22, 28, 25, 32, 27]],
    ]"
    :options="['chart' => ['stacked' => true]]"
    height="280px"
/>

License note

ApexCharts is non-MIT — see the License section on the Chart overview page and apexcharts.com/license for the full terms.

See Also

  • Bar charts for the horizontal-bar equivalent
  • Range Bar for Gantt-style schedule visualizations

Design Tokens

See ApexCharts adapter — Design Tokens for the color, typography, and grid tokens shared across every ApexCharts demo.