Skip to content

Commit

Permalink
this scale: null option is now the default
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil committed Sep 12, 2023
1 parent bd80e5f commit 60c805b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/plots/raster-vapor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function rasterVapor2() {
Plot.raster(await vapor(), {
width: 360,
height: 180,
fill: {value: (d) => (d > 4 ? "red" : null), scale: null}
fill: (d) => (d > 4 ? "red" : null)
})
]
});
Expand Down

0 comments on commit 60c805b

Please sign in to comment.