Data display
ComboChart
Combines bars, lines, and areas on one meaningful shared value domain.
01
See it and copy it
Framework example
Choose Astro, React, or Elements to compare native usage against the shared visual output. Each example assumes the framework-level setup is already complete.
Business performance
2 series, 8 points. Values range from 42 to 216.
- Revenue
- Margin
View chart data
| Category | Revenue | Margin |
|---|---|---|
| Q1 | 128 | 42 |
| Q2 | 154 | 49 |
| Q3 | 183 | 61 |
| Q4 | 216 | 74 |
Framework usage
Switch targets to compare the adapter code. The preview stays visually stable because all three packages share the same tokens andui-* class contract.---
import { ComboChart } from '@santi020k/lumen-astro'
import type { LumenComboSeries } from '@santi020k/lumen-core'
const series = [
{
data: [
{ x: 'Q1', y: 128 },
{ x: 'Q2', y: 154 },
{ x: 'Q3', y: 183 },
{ x: 'Q4', y: 216 }
],
id: 'revenue',
label: 'Revenue',
mark: 'bar'
},
{
data: [
{ x: 'Q1', y: 42 },
{ x: 'Q2', y: 49 },
{ x: 'Q3', y: 61 },
{ x: 'Q4', y: 74 }
],
id: 'margin',
label: 'Margin',
mark: 'line'
}
] satisfies readonly LumenComboSeries[]
---
<ComboChart
aria-label="Quarterly revenue and margin"
caption="Revenue is shown as bars and margin as a line."
heading="Business performance"
{series}
/>import { ComboChart } from '@santi020k/lumen-react'
export const Example = () => (
<>
<ComboChart
aria-label="Quarterly revenue and margin"
caption="Revenue is shown as bars and margin as a line."
heading="Business performance"
{series}
/>
</>
)<script type="module">
import { defineLumenElements } from '@santi020k/lumen-elements/define'
defineLumenElements()
</script>
<lumen-combo-chart
aria-label="Quarterly revenue and margin"
caption="Revenue is shown as bars and margin as a line."
heading="Business performance"
{series}></lumen-combo-chart>02
Choose your target
Add this component
Choose the package for your runtime. All adapters share the Lumen stylesheet. Use the matching registry command when you want a local wrapper for that framework.
pnpm add @santi020k/lumen-astropnpm add @santi020k/lumen-astrolumen add ComboChartlumen add ComboChartpnpm add @santi020k/lumen-reactpnpm add @santi020k/lumen-reactlumen add ComboChart --target reactlumen add ComboChart --target reactpnpm add @santi020k/lumen-elementspnpm add @santi020k/lumen-elementslumen add ComboChart --target elementslumen add ComboChart --target elementsAPI reference
Lumen-specific props and runtime attributes for the Astro primitive. React props follow the same names; Elements use equivalent kebab-case attributes where custom elements expose them.
| Attribute | Values | Default | Description |
|---|---|---|---|
| series | LumenComboSeries[] | [] | Combines bar and line series over one ordered category domain. |
| formatValue | (value: number) => string | String | Formats visible values and the accessible summary without changing source data. |
| showLegend | boolean | true | Shows the color-independent series key. |
| showTable | boolean | true | Provides a revealable semantic table containing every plotted value. |
| class, className | string | "" | Merges custom classes with the generated ui-* root classes. |
| ...native attributes | HTML attributes | - | Forwards standard attributes to the root element unless the component consumes them. |