Export Image
Export Code

Activity8_Task1_DV_LB_Q1.2

likithabaddam

Last edited Apr 14, 2024
Created on Apr 14, 2024
Forked from Hello VizHub

export const AxisLeft = ({ yScale }) => yScale.domain().map(tickValue => ( <g className="tick"> <text key={tickValue} style={{ textAnchor: 'end' }} x={-3} dy=".32em" y={yScale(tickValue) + yScale.bandwidth() / 2} > {tickValue} </text> </g> ));

MIT Licensed