Agent skill
radar-chart
Configure radar (spider) charts in drizzle-cube dashboards for multi-dimensional comparison. Use when creating radar charts, spider charts, or comparing multiple metrics across categories.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/radar-chart
SKILL.md
Radar Chart Configuration
Configure radar (spider) charts for drizzle-cube dashboards. Radar charts display multivariate data on a radial grid, ideal for comparing multiple dimensions or categories.
Chart Type
chartType: 'radar'
Basic Configuration
{
id: 'radar-1',
title: 'Product Comparison',
query: JSON.stringify({
dimensions: ['Products.feature'],
measures: ['Products.rating']
}),
chartType: 'radar',
chartConfig: {
xAxis: ['Products.feature'],
yAxis: ['Products.rating']
},
x: 0, y: 0, w: 6, h: 5
}
Chart Configuration (chartConfig)
xAxis (Dimensions)
- Type:
string[] - Purpose: Dimension for radar axes
- Example:
['Skills.name']
yAxis (Values)
- Type:
string[] - Purpose: Measures to plot
- Example:
['Employees.proficiency']
series (Multiple Radars)
- Type:
string[] - Purpose: Dimension to create multiple overlaid radars
- Example:
['Employees.name']
Examples
Skill Assessment
{
id: 'skill-radar',
title: 'Team Skill Assessment',
query: JSON.stringify({
dimensions: ['Skills.name', 'Employees.name'],
measures: ['Assessment.avgScore']
}),
chartType: 'radar',
chartConfig: {
xAxis: ['Skills.name'],
yAxis: ['Assessment.avgScore'],
series: ['Employees.name']
},
displayConfig: {
showLegend: true
},
x: 0, y: 0, w: 8, h: 6
}
Product Features
{
id: 'product-features',
title: 'Product Feature Ratings',
query: JSON.stringify({
dimensions: ['Features.category'],
measures: ['Ratings.avgScore']
}),
chartType: 'radar',
chartConfig: {
xAxis: ['Features.category'],
yAxis: ['Ratings.avgScore']
},
x: 6, y: 0, w: 6, h: 5
}
Use Cases
- Multi-Dimensional Comparison: Compare items across multiple attributes
- Skill Assessment: Visualize competency levels
- Product Comparison: Compare product features
- Performance Metrics: Show balanced scorecard data
Related Skills
- Use
bar-chartfor simpler comparisons - Use
bubble-chartfor three-variable analysis
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?