Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ROUX EMMANUEL committed Oct 27, 2021
1 parent 29b78ca commit 8e0fc83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/playground.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ function drawDatasetThumbnails() {
let data = dataGenerator(200, 0);
data.forEach(function(d) {
context.fillStyle = colorScale(d.label);
context.fillRect(w * (d.x + 6) / 12, h * (d.y + 6) / 12, 4, 4);
context.fillRect(w * (d.x + 6) / 12, h * (- d.y + 6) / 12, 4, 4);
});
d3.select(canvas.parentNode).style("display", null);
}
Expand Down

0 comments on commit 8e0fc83

Please sign in to comment.