d3-viz
Creating interactive data visualisations using d3.js. This skill should be used when creating custom charts, graphs, network diagrams, geographic visualisations, or any complex SVG-based data visualisation that requires fine-grained control over visual elements, transitions, or interactions. Use thi
By chrisvoncsefalvay · 769 installs
npx skills add chrisvoncsefalvay/claude-d3js-skill --skill d3-viz
Source repository · Upstream listing
D3.js Visualisation
Overview
This skill provides guidance for creating sophisticated, interactive data visualisations using d3.js. D3.js (Data Driven Documents) excels at binding data to DOM elements and applying data driven transformations to create custom, publication quality visualisations with precise control over every visual element. The techniques work across any JavaScript environment, including vanilla JavaScript, React, Vue, Svelte, and other frameworks.
When to use d3.js
Use d3.js for:
Custom visualisations requiring unique visual encodings or layouts
Interactive explorations with complex pan, zoom, or brush behaviours
Network/graph visualisations (force directed layouts, tree diagrams, hierarchies, chord diagrams)
Geographic visualisations with custom projections
Visualisations requiring smooth, choreographed transitions
Publication quality graphics with fine grained styling control
Novel chart types not available in standard libraries
Consider alternatives for:
3D visualisations use Three.js instead
Core workflow
1. Set up d3.js
Import d3 at the top of your script:
Or use the CDN version (7.x):
All modules (scales, axes, shapes, transitions, etc.) are accessible through the d3 namespace.
2. Choose the integration pattern
Pattern A: Direct DOM manipulation (recommended for most cases)
Use d3 to select DOM elements and manipulate them imperatively. This works in any JavaScript environment:
Pattern B: Declarative rendering (for frameworks with templating)
Use d3 for data calculations (scales, layouts) but render elements via your framework:
Use Pattern A for complex visualisations with transitions, interactions, or when leveraging d3's full capabilities. Use Pattern B for simpler visualisations or when your framework prefers declarative rendering.
3. Structure the visualisation code
Follow this standard structure in your drawing function:
4. Implement responsive sizing
Make visualisations responsive to container size:
Or use ResizeObserver for more direct container monitoring:
Common visualisation patterns
Bar chart
Line chart
Scatter plot
Chord diagram
A chord diagram shows relationships between entities in a circular layout, with ribbons representing flows between them:
Heatmap
A heatmap uses colour to encode values in a two dimensional grid, useful for showing patterns across categories:
Pie chart
Force directed network
Adding interactivity
Tooltips
Zoom and pan
Click interactions
Transitions and animations
Add smooth transitions to visual changes:
Scales reference
Quantitative scales
Ordinal scales
Sequential scales
Best practices
Data preparation
Always validate and prepare data before visualisation:
Performance optimisation
For large datasets ( 1000 elements):
Accessibility
Make visualisations accessible:
Styling
Use consistent, professional styling:
Common issues and solutions
Issue : Axes not appearing
Ensure scales have valid domains (check for NaN values)
Verify axis is appended to correct group
Check transform translations are correct
Issue : Transitions not working
Call .transition() before attribute changes
Ensure elements have unique keys for proper data binding
Check that useEffect dependencies include all changing data
Issue : Responsive sizing not working
Use ResizeObserver or window resize listener
Update dimensions in state to trigger re render
Ensure SVG has width/height attributes or viewBox
Issue : Performance problems
Limit number of DOM elements (consider canvas for 1000 items)
Debounce resize handlers
Use .join() instead of separate enter/update/exit selections
Avoid unnecessary re renders by checking dependencies
Resources
references/
Contains detailed reference materials:
d3 patterns.md Comprehensive collection of visualisation patterns and code examples
scale reference.md Complete guide to d3 scales with examples
colour schemes.md D3 colour schemes and palette recommendations
assets/
Contains boilerplate templates:
chart template.js Starter template for basic chart
interactive template.js Template with tooltips, zoom, and interactions
sample data.json Example datasets for testing
These templates work with vanilla JavaScript, React, Vue, Svelte, or any other JavaScript environment. Adapt them as needed for your specific framework.
To use these resources, read the relevant files when detailed guidance is needed for specific visualisation types or patterns.