Dc Chart Config
by cliftonc
Configure chart axis mappings and display options for all chart types in Drizzle Cube.
Skill Details
Repository Files
1 file in this skill directory
name: dc-chart-config description: Configure chart axis mappings and display options for all chart types in Drizzle Cube.
Chart Config Skill
This skill helps you configure charts using ChartAxisConfig and ChartDisplayConfig for optimal visualizations.
ChartAxisConfig
Maps data fields to chart axes:
interface ChartAxisConfig {
xAxis?: string[] // Dimension fields for X axis
yAxis?: string[] // Measure fields for Y axis
series?: string[] // Fields for grouping/series
sizeField?: string // Bubble chart size (numeric)
colorField?: string // Bubble chart color (dimension)
dateField?: string[] // Activity grid date field
valueField?: string[] // Activity grid value field
yAxisAssignment?: Record<string, 'left' | 'right'> // Dual-axis
}
ChartDisplayConfig
Controls visual appearance:
interface ChartDisplayConfig {
// Common options
showLegend?: boolean
showGrid?: boolean
showTooltip?: boolean
colors?: string[] // Custom color array
orientation?: 'horizontal' | 'vertical'
stackType?: 'none' | 'normal' | 'percent'
// Axis formatting
xAxisFormat?: AxisFormatConfig
leftYAxisFormat?: AxisFormatConfig
rightYAxisFormat?: AxisFormatConfig
// KPI options
prefix?: string
suffix?: string
decimals?: number
valueColorIndex?: number
positiveColorIndex?: number
negativeColorIndex?: number
showHistogram?: boolean
// Funnel options
funnelStyle?: 'bars' | 'funnel'
funnelOrientation?: 'horizontal' | 'vertical'
showFunnelConversion?: boolean
showFunnelAvgTime?: boolean
// Markdown options
content?: string
fontSize?: 'small' | 'medium' | 'large'
alignment?: 'left' | 'center' | 'right'
// Table options
pivotTimeDimension?: boolean
}
Axis Format Config
interface AxisFormatConfig {
unit?: 'number' | 'currency' | 'percent' | 'duration' | 'bytes'
abbreviate?: boolean // 1000 → 1K
decimals?: number // Decimal places
currencyCode?: string // USD, EUR, etc.
prefix?: string
suffix?: string
}
Chart Type Reference
Bar Chart
chartType: 'bar'
chartConfig: {
xAxis: ['Products.category'],
yAxis: ['Sales.revenue', 'Sales.count']
}
displayConfig: {
orientation: 'vertical', // 'vertical' or 'horizontal'
stackType: 'none', // 'none', 'normal', 'percent'
showLegend: true,
showGrid: true
}
Stacked Bar:
displayConfig: {
stackType: 'normal', // Stack values
// OR
stackType: 'percent' // 100% stacked
}
Horizontal Bar:
displayConfig: {
orientation: 'horizontal'
}
Line Chart
chartType: 'line'
chartConfig: {
xAxis: ['Orders.createdAt'],
yAxis: ['Sales.revenue']
}
displayConfig: {
showLegend: true,
showGrid: true,
showTooltip: true
}
Multiple Series:
chartConfig: {
xAxis: ['Orders.createdAt'],
yAxis: ['Sales.revenue'],
series: ['Products.category'] // Group by category
}
Area Chart
chartType: 'area'
chartConfig: {
xAxis: ['Orders.createdAt'],
yAxis: ['Sales.revenue']
}
displayConfig: {
stackType: 'normal', // Stacked area
showLegend: true
}
Pie Chart
chartType: 'pie'
chartConfig: {
xAxis: ['Products.category'], // Slices
yAxis: ['Sales.revenue'] // Values
}
displayConfig: {
showLegend: true,
showTooltip: true
}
Scatter Plot
chartType: 'scatter'
chartConfig: {
xAxis: ['Employees.experience'], // X position
yAxis: ['Employees.salary'] // Y position
}
displayConfig: {
showGrid: true,
showTooltip: true
}
Bubble Chart
chartType: 'bubble'
chartConfig: {
xAxis: ['Products.price'],
yAxis: ['Products.rating'],
sizeField: 'Products.salesCount', // Bubble size
colorField: 'Products.category' // Bubble color
}
displayConfig: {
showLegend: true
}
Radar Chart
chartType: 'radar'
chartConfig: {
xAxis: ['Skills.name'], // Spokes
yAxis: ['Employees.score'] // Values
}
displayConfig: {
showLegend: true
}
Data Table
chartType: 'table'
chartConfig: {} // Tables auto-configure
displayConfig: {
pivotTimeDimension: true // Pivot time as columns
}
KPI Number
Single value display:
chartType: 'kpiNumber'
chartConfig: {
yAxis: ['Sales.totalRevenue']
}
displayConfig: {
prefix: '$',
suffix: '',
decimals: 0,
valueColorIndex: 0 // Palette color index
}
KPI Delta
Shows change between periods:
chartType: 'kpiDelta'
chartConfig: {
yAxis: ['Sales.totalRevenue']
}
displayConfig: {
prefix: '$',
decimals: 0,
positiveColorIndex: 2, // Green for growth
negativeColorIndex: 1, // Red for decline
showHistogram: true // Mini sparkline
}
Query for KPI Delta:
query: {
measures: ['Sales.totalRevenue'],
timeDimensions: [{
dimension: 'Sales.createdAt',
granularity: 'month',
compareDateRange: [
['2024-02-01', '2024-02-29'], // Current period
['2024-01-01', '2024-01-31'] // Previous period
]
}]
}
Funnel Chart
chartType: 'funnel'
chartConfig: {}
displayConfig: {
funnelStyle: 'funnel', // 'funnel' or 'bars'
funnelOrientation: 'horizontal', // 'horizontal' or 'vertical'
showFunnelConversion: true, // Show conversion %
showFunnelAvgTime: true // Show avg time between steps
}
Sankey (Flow) Chart
chartType: 'sankey'
chartConfig: {}
displayConfig: {}
// Sankey auto-configures from flow query data
Activity Grid (Heatmap)
chartType: 'activityGrid'
chartConfig: {
dateField: ['Events.date'],
valueField: ['Events.count']
}
displayConfig: {
showTooltip: true
}
Markdown
chartType: 'markdown'
chartConfig: {}
displayConfig: {
content: '# Title\n\nSome **markdown** content',
fontSize: 'medium', // 'small' | 'medium' | 'large'
alignment: 'center' // 'left' | 'center' | 'right'
}
Treemap
chartType: 'treemap'
chartConfig: {
xAxis: ['Products.category', 'Products.subcategory'], // Hierarchy
yAxis: ['Sales.revenue'] // Size
}
displayConfig: {
showTooltip: true
}
Dual-Axis Configuration
For charts with different scales:
chartConfig: {
xAxis: ['Orders.createdAt'],
yAxis: ['Sales.revenue', 'Sales.count'],
yAxisAssignment: {
'Sales.revenue': 'left', // Left Y axis
'Sales.count': 'right' // Right Y axis
}
}
displayConfig: {
leftYAxisFormat: {
unit: 'currency',
abbreviate: true
},
rightYAxisFormat: {
unit: 'number'
}
}
Common Display Patterns
Currency Formatting
displayConfig: {
leftYAxisFormat: {
unit: 'currency',
currencyCode: 'USD',
abbreviate: true, // $1.5M instead of $1,500,000
decimals: 0
}
}
Percentage Formatting
displayConfig: {
leftYAxisFormat: {
unit: 'percent',
decimals: 1
}
}
Duration Formatting
displayConfig: {
leftYAxisFormat: {
unit: 'duration' // Auto-formats seconds to human readable
}
}
Custom Colors
displayConfig: {
colors: ['#3b82f6', '#ef4444', '#10b981', '#f59e0b']
}
Chart Selection Guide
| Data Type | Recommended Chart | Why |
|---|---|---|
| Single value | kpiNumber |
Clear, prominent display |
| Period comparison | kpiDelta |
Shows change direction |
| Trend over time | line |
Shows progression |
| Category comparison | bar |
Easy comparison |
| Part of whole | pie |
Shows proportions |
| Correlation | scatter |
Shows relationships |
| 3+ dimensions | bubble |
Size/color encoding |
| Detailed data | table |
Full data access |
| Conversions | funnel |
Step-by-step drop-off |
| User journeys | sankey |
Path visualization |
| Activity patterns | activityGrid |
Calendar heatmap |
Best Practices
- Match chart to question - Use line for "how did it change?", bar for "how do they compare?"
- Limit categories - Pie charts work best with 5-7 slices max
- Use consistent colors - Stick to the palette
- Format appropriately - Use abbreviation for large numbers
- Show legends when needed - Required for multiple series
- Enable tooltips - Helps users explore data
- Consider mobile - Horizontal bars may work better on small screens
Related Skills
Team Composition Analysis
This skill should be used when the user asks to "plan team structure", "determine hiring needs", "design org chart", "calculate compensation", "plan equity allocation", or requests organizational design and headcount planning for a startup.
Startup Financial Modeling
This skill should be used when the user asks to "create financial projections", "build a financial model", "forecast revenue", "calculate burn rate", "estimate runway", "model cash flow", or requests 3-5 year financial planning for a startup.
Startup Metrics Framework
This skill should be used when the user asks about "key startup metrics", "SaaS metrics", "CAC and LTV", "unit economics", "burn multiple", "rule of 40", "marketplace metrics", or requests guidance on tracking and optimizing business performance metrics.
Market Sizing Analysis
This skill should be used when the user asks to "calculate TAM", "determine SAM", "estimate SOM", "size the market", "calculate market opportunity", "what's the total addressable market", or requests market sizing analysis for a startup or business opportunity.
Anndata
This skill should be used when working with annotated data matrices in Python, particularly for single-cell genomics analysis, managing experimental measurements with metadata, or handling large-scale biological datasets. Use when tasks involve AnnData objects, h5ad files, single-cell RNA-seq data, or integration with scanpy/scverse tools.
Geopandas
Python library for working with geospatial vector data including shapefiles, GeoJSON, and GeoPackage files. Use when working with geographic data for spatial analysis, geometric operations, coordinate transformations, spatial joins, overlay operations, choropleth mapping, or any task involving reading/writing/analyzing vector geographic data. Supports PostGIS databases, interactive maps, and integration with matplotlib/folium/cartopy. Use for tasks like buffer analysis, spatial joins between dat
Market Research Reports
Generate comprehensive market research reports (50+ pages) in the style of top consulting firms (McKinsey, BCG, Gartner). Features professional LaTeX formatting, extensive visual generation with scientific-schematics and generate-image, deep integration with research-lookup for data gathering, and multi-framework strategic analysis including Porter's Five Forces, PESTLE, SWOT, TAM/SAM/SOM, and BCG Matrix.
Plotly
Interactive scientific and statistical data visualization library for Python. Use when creating charts, plots, or visualizations including scatter plots, line charts, bar charts, heatmaps, 3D plots, geographic maps, statistical distributions, financial charts, and dashboards. Supports both quick visualizations (Plotly Express) and fine-grained customization (graph objects). Outputs interactive HTML or static images (PNG, PDF, SVG).
Excel Analysis
Analyze Excel spreadsheets, create pivot tables, generate charts, and perform data analysis. Use when analyzing Excel files, spreadsheets, tabular data, or .xlsx files.
Neurokit2
Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.
