Skip to content

Commit

Permalink
Increase minimum size of circles from 0r to 5r so that the lowest dat…
Browse files Browse the repository at this point in the history
…a point is still rendered. (#30)
  • Loading branch information
sbgeiger authored Oct 28, 2024
1 parent ef55011 commit 464726c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/charts/scatterplot.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
let r_scale
$: r_scale = rScaleType()
.domain(extent(data, r_accessor))
.range([0, radius])
.range([5, radius])
let x_scale, xGet
let y_scale, yGet
Expand Down

0 comments on commit 464726c

Please sign in to comment.