Structured Cell Renderer
Create your own custom schema on cell and render custom cells like Sparklines, document objects etc
Overview
Supported Structured Results
Sparklines
import type { SparkLineResult } from "@rowsncolumns/common-types";
const sparklineValue: SparkLineResult = {
kind: "sparkline",
data: [1, 5, 3, 7, 4, 9, 6],
formattedValue: "Trend", // Fallback text
};Custom Structured Results
Using Structured Cells
1. Define Your Custom Cell Data Type
2. Create Structured Cell Values
3. Custom Renderer (Optional)
Getting Structured Values
Formulas and Structured Results
Complete Example
Use Cases
Visualizing Trends
Custom Indicators
Performance Considerations
Limitations
Last updated