const config: GraphConfig = {
type: 'table',
data: {
columns: [
{ key: 'product', label: 'Product' },
{ key: 'units_sold', label: 'Units sold' },
{ key: 'revenue', label: 'Revenue' },
{ key: 'profit_margin', label: 'Profit margin' }
],
rows: [
{ product: 'Laptop Pro', units_sold: 1245, revenue: 1867500, profit_margin: 0.32 },
{ product: 'Phone X', units_sold: 3521, revenue: 2816800, profit_margin: 0.41 },
{ product: 'Tablet Mini', units_sold: 892, revenue: 267600, profit_margin: 0.28 },
{ product: 'Watch Smart', units_sold: 2104, revenue: 841600, profit_margin: 0.45 }
]
}
};