
Supported chart types

- Bar
- Column
- Area
- Line
- Donut
- Radial (Gauge)
Data & variables (dynamic payload)
Charts will be rendered using dynamic via payload.
- series_a (Y-axis): numbers or strings that can be parsed as numbers.
- labels (X-axis): strings only.
Identifier → payload key
We automatically create the payload key from the Identifier (lowercased & snake_cased). Examples- Identifier: Bar chart title → payload key: bar_chart_title
- Identifier: Monthly Revenue → payload key: monthly_revenue
Multiple series
Add more series in Data → Add new series. Each series becomes its own array inside the identifier:Series names and titles can’t start with a number! \ \ If you’re series is
something like “2025 values”, change it to “values - 2025”, so the variables
can be properly set.
How to use (step by step)
- Insert a Chart and choose a type (Bar, Column, Area, Line, Donut, Radial).
- In General, set:
- Identifier (drives the dynamic payload key).
- Subtitle (supports plain text; see Tips for HTML).
- In Data, configure each Series:
- Name (legend/series label).
- Color (HEX).
- Label color (for on-bar/on-point labels when enabled).
- Show label (toggle data labels per series).
- Add new series as needed (not applicable to Donut/Radial which are single-series visually).
- Bind dynamic data by sending the payload described above.
- Adjust Design (see next section).
- (Advanced) Use Options override for any ApexCharts option you need to fine-tune.
Design options (UI)

Layout
- Margin (Horizontal Margin convention):
- None 0px · Small 12px · Medium 20px · Large 40px
- Height (px)
- Width (auto or px)
- Stacking (Bar/Column): Don’t stack or Stack
- Hide title: toggle title/subtitle visibility
- Card border: toggle outer border
Data labels
- Position: top, center, bottom (varies by chart)
- Orientation: Horizontal or Vertical
- Font size: px
- Format: number format (e.g., 1,234)
- Prefix / Suffix: add currency or units (e.g., $, %, kg)
Y Axis
- Show axis
- Show labels
- Horizontal grid
- Title (text)
- Prefix/Suffix (helpful for currencies or units)
X Axis
- Show labels
- Title (text)
Visibility (conditional rendering)
If you don’t send the chart variable on the payload, the chart won’t be rendered, meaning the chart will be heading.Options Override (advanced)
Override any ApexCharts option via JSON for extra flexibility.How it works
- We deep-merge your JSON with our defaults.
- Only the specified properties are overridden.
Note: Functions inside JSON are supported only when applicable in our
runtime. Prefer static options when possible.
Payload Examples per Chart
1) Single series (Column)
2) Two series (Line)
3) Donut (categories)
4) Radial (single value)
You can’t combine different chart types in a single chart right now (e.g.,
line + column). It’s on our roadmap. If you’d like this, email
[email protected].
F.A.Q.
- Nothing renders? Check you’re sending the chart payload properly
- No data labels showing? Enable Data labels and/or per-series Show label.
- Values look wrong? Ensure series are numbers (or numeric strings). Labels must be strings.
- Need a very specific tweak? Use Options override with the corresponding ApexCharts option.
