Cell
<Cell> represents one cell. It can be styled, merged, formatted, or hold a formula.
<Cell value="Text" className="text-left" /><Cell value={123} format='"$"#,##0.00' className="text-right" /><Cell value="Merged" colSpan={2} rowSpan={2} className="text-center" />Props
value(optional)formula(optional)format(optional)className(optional)colSpan/rowSpan(optional)id(optional): creates a named range for this cell
Images
- You can nest
<Image>inside a cell to position it in that cell.
Examples

examples/05-merged-cells.tsxshows practicalcolSpanandrowSpanusage in a report layout.examples/08-complex-merge.tsxpushes merge behavior further with overlapping row and column spans.