Claude Code के साथ D3.js Implementation
Claude Code का उपयोग करके D3.js implementation सीखें। Practical tips और code examples शामिल हैं।
Claude Code से D3.js Data Visualization को Efficient बनाएं
D3.js (Data-Driven Documents) data के आधार पर DOM manipulate करने वाली powerful visualization library है। इसकी flexibility बहुत अच्छी है, लेकिन learning curve भी ऊंचा है। Claude Code का उपयोग करके, D3.js के complex API को efficiently handle किया जा सकता है।
Responsive Bar Chart बनाना
> D3.js से responsive bar chart बनाओ।
> Tooltip और animation के साथ।
import * as d3 from 'd3';
interface DataItem {
label: string;
value: number;
}
function createBarChart(
container: string,
data: DataItem[]
) {
const margin = { top: 20, right: 20, bottom: 40, left: 50 };
const width = 600 - margin.left - margin.right;
const height = 400 - margin.top - margin.bottom;
const svg = d3.select(container)
.append('svg')
.attr('viewBox', `0 0 ${width + margin.left + margin.right} ${height + margin.top + margin.bottom}`)
.append('g')
.attr('transform', `translate(${margin.left},${margin.top})`);
// Scale
const x = d3.scaleBand()
.domain(data.map(d => d.label))
.range([0, width])
.padding(0.2);
const y = d3.scaleLinear()
.domain([0, d3.max(data, d => d.value)!])
.nice()
.range([height, 0]);
// Axes
svg.append('g')
.attr('transform', `translate(0,${height})`)
.call(d3.axisBottom(x));
svg.append('g')
.call(d3.axisLeft(y));
// Tooltip
const tooltip = d3.select(container)
.append('div')
.attr('class', 'tooltip')
.style('opacity', 0)
.style('position', 'absolute')
.style('background', '#333')
.style('color', '#fff')
.style('padding', '8px')
.style('border-radius', '4px');
// Bars (animated)
svg.selectAll('.bar')
.data(data)
.join('rect')
.attr('class', 'bar')
.attr('x', d => x(d.label)!)
.attr('width', x.bandwidth())
.attr('y', height)
.attr('height', 0)
.attr('fill', '#6366f1')
.on('mouseover', (event, d) => {
tooltip.transition().duration(200).style('opacity', 0.9);
tooltip.html(`${d.label}: ${d.value}`)
.style('left', `${event.pageX + 10}px`)
.style('top', `${event.pageY - 28}px`);
})
.on('mouseout', () => {
tooltip.transition().duration(300).style('opacity', 0);
})
.transition()
.duration(800)
.delay((_, i) => i * 100)
.attr('y', d => y(d.value))
.attr('height', d => height - y(d.value));
}
Line Chart और Area Chart
> Time series data का line chart बनाओ।
> Brush feature से range select भी कर सकें।
function createLineChart(
container: string,
data: { date: Date; value: number }[]
) {
const margin = { top: 20, right: 20, bottom: 80, left: 50 };
const width = 800 - margin.left - margin.right;
const height = 400 - margin.top - margin.bottom;
const brushHeight = 40;
const svg = d3.select(container)
.append('svg')
.attr('viewBox', `0 0 ${width + margin.left + margin.right} ${height + margin.top + margin.bottom}`);
const g = svg.append('g')
.attr('transform', `translate(${margin.left},${margin.top})`);
const x = d3.scaleTime()
.domain(d3.extent(data, d => d.date) as [Date, Date])
.range([0, width]);
const y = d3.scaleLinear()
.domain([0, d3.max(data, d => d.value)!])
.nice()
.range([height - brushHeight - 10, 0]);
// Line
const line = d3.line<{ date: Date; value: number }>()
.x(d => x(d.date))
.y(d => y(d.value))
.curve(d3.curveMonotoneX);
// Area
const area = d3.area<{ date: Date; value: number }>()
.x(d => x(d.date))
.y0(height - brushHeight - 10)
.y1(d => y(d.value))
.curve(d3.curveMonotoneX);
g.append('path')
.datum(data)
.attr('fill', 'rgba(99, 102, 241, 0.1)')
.attr('d', area);
g.append('path')
.datum(data)
.attr('fill', 'none')
.attr('stroke', '#6366f1')
.attr('stroke-width', 2)
.attr('d', line);
g.append('g')
.attr('transform', `translate(0,${height - brushHeight - 10})`)
.call(d3.axisBottom(x));
g.append('g').call(d3.axisLeft(y));
}
React के साथ Integration
> D3.js chart को React component के रूप में implement करो।
> useRef और useEffect से safely integrate करो।
import { useRef, useEffect } from 'react';
import * as d3 from 'd3';
interface ChartProps {
data: { label: string; value: number }[];
width?: number;
height?: number;
}
export function BarChart({ data, width = 600, height = 400 }: ChartProps) {
const svgRef = useRef<SVGSVGElement>(null);
useEffect(() => {
if (!svgRef.current || data.length === 0) return;
const svg = d3.select(svgRef.current);
svg.selectAll('*').remove();
// D3 drawing logic यहां लिखें
// ...
}, [data, width, height]);
return <svg ref={svgRef} viewBox={`0 0 ${width} ${height}`} />;
}
Summary
D3.js की rich API को Claude Code से efficiently use करके, interactive data visualization build किया जा सकता है। Data visualization basics और chart library usage भी reference के लिए देखें।
D3.js के details के लिए D3.js official documentation और Observable D3 Gallery देखें।
मुफ़्त PDF: 5 मिनट में Claude Code चीटशीट
बस अपना ईमेल दर्ज करें और हम तुरंत A4 एक-पृष्ठ चीटशीट PDF भेज देंगे।
हम आपकी व्यक्तिगत जानकारी की सुरक्षा करते हैं और स्पैम नहीं भेजते।
लेखक के बारे में
Masa
Claude Code का गहराई से उपयोग करने वाले इंजीनियर। claudecode-lab.com चलाते हैं, जो 10 भाषाओं में 2,000 से अधिक पेजों वाला टेक मीडिया है।
संबंधित लेख
हर दिन बहुभाषी Claude Code लेख प्रकाशित करने से पहले 7 जांचें
एक व्यावहारिक चेकलिस्ट ताकि आप हर दिन बहुभाषी Claude Code लेख प्रकाशित करते समय कोई भाषा न छोड़ें, CTA न तोड़ें और पुराना पेज लाइव न रहने दें।
Codex Automations क्या है? AI से content ops, analysis और deploy करवाने का तरीका
Codex Automations से analytics, article planning, CTA सुधार, deploy और monetization workflow चलाने की practical guide.
Claude Code × GCP Cloud Functions संपूर्ण गाइड | सर्वरलेस फंक्शन तेज़ी से विकसित करें
Claude Code से GCP Cloud Functions को ऑप्टिमाइज़ करें। HTTP/Pub/Sub/Firestore ट्रिगर, लोकल टेस्टिंग और डिप्लॉयमेंट ऑटोमेशन — Masa के व्यावहारिक अनुभव से रियल कोड उदाहरणों के साथ।