From 70b524cc79a6ab05a9aa1fabf1cd462dc87b582b Mon Sep 17 00:00:00 2001 From: Dominik Buszowiecki Date: Thu, 16 Apr 2026 11:55:16 -0400 Subject: [PATCH] fix(chartcuterie): Stack grouped bar charts in unfurls Bar charts rendered by chartcuterie for Slack unfurls were not stacking grouped series, unlike the equivalent charts in Explore and Dashboards. Pass a shared stack key to the plottable when rendering grouped series so Bars plottables stack under a single column per x-tick. Refs DAIN-1536 Co-Authored-By: Claude Opus 4.7 --- static/app/chartcuterie/timeseries.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/static/app/chartcuterie/timeseries.tsx b/static/app/chartcuterie/timeseries.tsx index 9f6347077a8c54..9796404d83a284 100644 --- a/static/app/chartcuterie/timeseries.tsx +++ b/static/app/chartcuterie/timeseries.tsx @@ -146,6 +146,7 @@ export const makeTimeseriesCharts = ( const plottable = createPlottableFromTimeSeries(displayType, ts, { name: formatTimeSeriesLabel(ts), color: color?.[i], + stack: 'all', }); return plottable?.toSeries(plottingOptions) ?? []; });