diff --git a/src/components/d3/renders/points.ts b/src/components/d3/renders/points.ts index ecee991..68f09e8 100644 --- a/src/components/d3/renders/points.ts +++ b/src/components/d3/renders/points.ts @@ -50,7 +50,7 @@ export const renderPoint = >( currentPoints.enter().append(config.shape) const newPoints = getPointsRoot() - .selectAll(config.shape) + .selectAll(config.shape) .transition() .duration(chart.animDurationMs ?? 0) @@ -58,14 +58,14 @@ export const renderPoint = >( default: case 'circle': newPoints.attr('r', config.radius) - .attr('cx', (d: any) => xAxis(chart.x(d))) - .attr('cy', (d: any) => yAxis(chart.y(d))) + .attr('cx', (d) => xAxis(chart.x(d))) + .attr('cy', (d) => yAxis(chart.y(d))) break case 'line': - newPoints.attr('x1', (d: any) => xAxis(chart.x(d))) - .attr('x2', (d: any) => xAxis(chart.x(d))) - .attr('y1', (d: any) => yAxis(chart.y(d)) - config.radius) - .attr('y2', (d: any) => yAxis(chart.y(d)) + config.radius) + newPoints.attr('x1', (d) => xAxis(chart.x(d))) + .attr('x2', (d) => xAxis(chart.x(d))) + .attr('y1', (d) => yAxis(chart.y(d)) - config.radius) + .attr('y2', (d) => yAxis(chart.y(d)) + config.radius) break }