Skip to content

Commit

Permalink
Bar Series Filter Quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
blindguardian50 committed Mar 19, 2024
1 parent b36c21d commit 96f1c82
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/bar/bar-series/bar-base-series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export abstract class BarBaseSeries extends CartesianSeries {
getBarRects(): Bar[] {
const data: Bar[] = []
const [x, y] = [this.x.cloneFiltered(), this.y.cloneFiltered()]
this.geometryScaleHandler.originalXValues = x
this.geometryScaleHandler.originalYValues = y

if (!this.keysActive[this.key]) return data
for (let i = 0; i < this.y.values.length; ++i) {
Expand Down

0 comments on commit 96f1c82

Please sign in to comment.