Skip to main content
A combined chart mixes registered series types in a single option. There is no separate combo chart API. The registered modules are line, including area through areaStyle, bar, and pie or donut. Other ECharts series such as scatter and radar are not supported.

How it works

  1. Define one ECharts option with several series entries of different types, or line series with and without areaStyle.
  2. Pass the option to Chart with a variant, usually "categorical" when the chart includes a line.
  3. Leave colors and markers to variant. A combined chart is multi-series, so the palette applies per series rather than per bar datum.
  4. Set accessibilityLabel, width, and height on the React Native host.

Line and area

Stacked area bands use areaStyle together with stack, and an unstacked line carries a target or forecast. Leave stack and areaStyle off the line so it overlays the bands.

Bar and line

Bars carry the primary measure and a line carries the comparison series. Both share one category axis.
A second value scale stays at the option level: pass yAxis as an array and set yAxisIndex on the series. This still renders through Chart rather than a separate API.
Last modified on August 20, 2026