feat(ag-grid-table): Enable Time Shift feature for AG Grid Table (#37072)

This commit is contained in:
amaannawab923
2026-01-19 14:56:05 +05:30
committed by GitHub
parent 476e454384
commit 39238ef8a9
4 changed files with 20 additions and 12 deletions

View File

@@ -120,6 +120,12 @@ const buildQuery: BuildQuery<TableChartFormData> = (
}
}
// Dashboard filter override - allows dashboard-level time shifts to OVERRIDE
// chart-level time shift settings (from PRs #33947 and #34014)
if (extra_form_data?.time_compare) {
timeOffsets = [extra_form_data.time_compare];
}
let temporalColumnAdded = false;
let temporalColumn = null;