Export Image
Export Code

Activity6_Task1

pavansagi2385

0 views in last 90 days
Last edited Apr 03, 2025
Created on Apr 03, 2025
Forked from Hello VizHub

import React from 'react';

export const Marks = ({ data, xScale, yScale, xValue, yValue, tooltipFormat, }) => ( <g className="marks"> {data.map((d) => ( <rect className="mark" key={yValue(d)} x={0} y={yScale(yValue(d))} width={xScale(xValue(d))} height={yScale.bandwidth()} > <title>{tooltipFormat(xValue(d))}</title> </rect> ))} </g> );

MIT Licensed