import * as d3 from 'd3'; import * as React from 'react'; const HorizontalBarChart = (props) => { const d3Container = React.useRef(null); const [containerWidth, setContainerWidth] = React.useState(0); const drawChart = (width) => { if (!d3Container.current || !props.data || width <= 0) { return; } if (props.data && d3Container && d3Container.current && width > 0) { const svg = d3.select(d3Container.current); svg.selectAll('*').remove(); const margin = { top: 10, right: 20, bottom: 40, left: 30 }; const height = +svg.attr('height') - margin.top - margin.bottom; const drawWidth = width - margin.left - margin.right; const g = svg.append('g').attr('transform', `translate(${margin.left},${margin.top})`); const xScale = d3 .scaleLinear() .domain([0, d3.max(props.data, (d) => d.value)]) .range([0, drawWidth]); const yScale = d3 .scaleBand() .domain(props.data.map((d) => d.label)) .rangeRound([0, height]) .padding(0.2); yScale.domain().forEach((d) => { g.append('line').attr('x1', 0).attr('x2', drawWidth).attr('y1', yScale(d)).attr('y2', yScale(d)).attr('stroke', 'var(--theme-border)'); }); const yAxis = g.append('g').call(d3.axisLeft(yScale)); yAxis.selectAll('.tick text').style('fill', 'var(--theme-border)').style('font-size', 'var(--type-scale-fixed-small)'); yAxis.selectAll('.tick line, .domain').style('stroke', 'var(--theme-border)'); const xAxis = g.append('g').attr('transform', `translate(0,${height})`).call(d3.axisBottom(xScale).ticks(3)); xAxis.selectAll('path,line').style('stroke', 'var(--theme-border)').style('font-size', 'var(--type-scale-fixed-small)'); xAxis.selectAll('text').style('fill', 'var(--theme-border)').style('font-size', 'var(--type-scale-fixed-small)'); const defs = svg.append('defs'); const colors = { positive: ['var(--theme-graph-positive-subdued)', 'var(--theme-graph-positive)'], negative: ['var(--theme-graph-negative-subdued)', 'var(--theme-graph-negative)'], }; Object.entries(colors).forEach(([key, colorRange]) => { const gradient = defs.append('linearGradient').attr('id', `gradient-${key}`).attr('y1', '0%').attr('y2', '0%').attr('x1', '0%').attr('x2', '100%'); gradient.append('stop').attr('offset', '0%').attr('stop-color', colorRange[0]); gradient.append('stop').attr('offset', '100%').attr('stop-color', colorRange[1]); }); g.selectAll('.bar') .data(props.data) .enter() .append('rect') .attr('class', 'bar') .attr('x', 0) .attr('y', (d) => yScale(d.label)) .attr('width', (d) => xScale(d.value)) .attr('height', yScale.bandwidth()) .attr('fill', (d, i) => (i % 2 === 0 ? 'url(#gradient-positive)' : 'url(#gradient-negative)')); } }; React.useEffect(() => { if (!d3Container || !d3Container.current) { return; } setContainerWidth(d3Container.current.clientWidth); const handleResize = () => { if (!d3Container || !d3Container.current) { return; } setContainerWidth(d3Container.current.clientWidth); }; window.addEventListener('resize', handleResize); return () => window.removeEventListener('resize', handleResize); }, [props.data]); React.useEffect(() => { drawChart(containerWidth); }, [containerWidth, props.data]); return ( <>
{props?.legend?.map((item, index) => { return (

{item.label}

); })}
); }; // Function to draw error bars export default HorizontalBarChart;