Generate ApexCharts v4+ configurations for data visualization. Use this skill when the user needs charts, graphs, or data visualization components (examples include bar charts, line charts, donut charts, heatmaps, or any ApexCharts implementation). Produces clean, accessible chart configs that follow the project's DESIGN.md color palette and responsive guidelines.
Genera configuraciones de gráficas para ApexCharts v4+ siguiendo el DESIGN.md del proyecto.
// Input: "gráfico de barras con datos de sectores"
// Output:
{
chart: { type: 'bar', height: 300, fontFamily: 'Inter, sans-serif' },
series: [{ name: 'Empleo riesgo', data: [77234, 42356, 31245] }],
xaxis: { categories: ['Comercio', 'Hostelería', 'Industria'] },
colors: ['#C86405', '#4A7C59', '#7B6F72'],
plotOptions: { bar: { borderRadius: 4, columnWidth: '60%' } },
tooltip: { theme: 'light', style: { fontSize: '14px' } }
}