Skip to content

Commit

Permalink
Fix voor vastgezette verticale balk bij klikken op grafiek bij maand. (
Browse files Browse the repository at this point in the history
…#26)

Closes #21
  • Loading branch information
Hilbrand authored Jan 2, 2024
1 parent 877058c commit d0e5604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/grafieken/Legenda.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class Legenda {
let ab = this.berekenen.vis.arbeidsInkomen;
if (ab > 0) {
let b = this.berekenen.bereken(ab);
let id = ab;
let id = ab * this.berekenen.getFactor();
var data = [];
this.berekenen.verzamelGrafiekSeries(data, b, id);
this.setLegendaText(data, data.length, 0);
Expand Down

0 comments on commit d0e5604

Please sign in to comment.