Skip to content

Commit

Permalink
fix(#1532): correct domain for filter score histogram (#1540)
Browse files Browse the repository at this point in the history
This PR forces the histogram to display a correct range and domain from 0 to 1

Closes #1532
  • Loading branch information
leiyre committed Jun 6, 2022
1 parent 9aa6222 commit c66f292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/commons/header/filters/FilterScore.vue
Expand Up @@ -135,7 +135,7 @@ export default {
},
encoding: {
x: {
scale: { zero: true },
scale: { nice: 1 },
bin: { maxbins: 100, extent: [0.0, 1.0] },
field: "key",
type: "quantitative",
Expand Down

0 comments on commit c66f292

Please sign in to comment.