Agent skill
radial-bar-chart
Configure radial bar charts in drizzle-cube dashboards for circular progress and gauge visualizations. Use when creating radial bars, circular progress indicators, or gauge charts.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/devops/radial-bar-chart
SKILL.md
Radial Bar Chart Configuration
Configure radial bar charts for drizzle-cube dashboards. Radial bar charts display data in a circular format, useful for progress indicators and gauge-style visualizations.
Chart Type
chartType: 'radialBar'
Basic Configuration
{
id: 'radial-1',
title: 'Goal Progress',
query: JSON.stringify({
dimensions: ['Goals.name'],
measures: ['Goals.completionPercentage']
}),
chartType: 'radialBar',
chartConfig: {
xAxis: ['Goals.name'],
yAxis: ['Goals.completionPercentage']
},
x: 0, y: 0, w: 6, h: 5
}
Chart Configuration (chartConfig)
xAxis (Categories)
- Type:
string[] - Required: Yes
- Max Items: 1
- Purpose: Dimension for radial segments
- Example:
['Goals.name']
yAxis (Values)
- Type:
string[] - Purpose: Measure (typically percentage)
- Example:
['Goals.completion']
Examples
Progress Tracking
{
id: 'project-progress',
title: 'Project Completion',
query: JSON.stringify({
dimensions: ['Projects.name'],
measures: ['Projects.completionRate']
}),
chartType: 'radialBar',
chartConfig: {
xAxis: ['Projects.name'],
yAxis: ['Projects.completionRate']
},
displayConfig: {
showLegend: true
},
x: 0, y: 0, w: 6, h: 5
}
Use Cases
- Progress Indicators: Show completion percentages
- Goal Tracking: Visualize goal achievement
- Gauges: Display metric gauges
- Capacity Usage: Show resource utilization
Related Skills
- Use
kpi-numberfor simple percentages - Use
pie-chartfor proportions
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?