Skip to content

Commit

Permalink
demo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leeoniya committed Sep 28, 2024
1 parent 41b96d1 commit efc3a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/log-scales2.html
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
{
stroke: "red",
fill: "rgba(255,0,0,0.1)",
value: (u, val) => val.toExponential(),
value: (u, val) => val == null ? '--' : val.toExponential(),
},
],
};
Expand Down

0 comments on commit efc3a3f

Please sign in to comment.