dragoon0x/everything-design-taste

data-visualization

Chart selection, data viz best practices, dashboard design, and statistical graphics.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill data-visualization

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,445 B
  • docs SUMMARY.md 111 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Data Visualization

Chart Selection

Question Chart Type
How does it change over time? Line chart
How do categories compare? Bar chart (horizontal for long labels)
What's the part-to-whole? Donut chart (5 categories max) or stacked bar
What's the distribution? Histogram or box plot
Is there a correlation? Scatter plot
What's the geographic pattern? Choropleth or bubble map
What's the flow/process? Sankey or flow diagram

Design Rules

  1. Title states the insight, not the data. "Revenue grew 3x" not "Revenue 2023-2025."
  2. Start Y-axis at zero for bar charts. Line charts can start at non-zero with clear labeling.
  3. Remove chartjunk: gridlines, borders, 3D effects, decorative elements.
  4. Color with purpose: highlight the data point that matters, gray the rest.
  5. Label directly on the chart when possible (not in a separate legend).
  6. Responsive: Charts must be readable on mobile (simplify, don't just shrink).

Anti-Patterns

  • Pie charts with more than 5 slices.
  • 3D charts (ever).
  • Dual Y-axis (almost always confusing).
  • Rainbow color schemes (not accessible, not meaningful).
  • Truncated axes that exaggerate differences.