mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-23 16:37:52 +01:00
fix(data-warehouse): Fix custom series colors in chart tooltips (#26310)
This commit is contained in:
parent
5fd6fd61b4
commit
07105b7a84
@ -348,7 +348,9 @@ export const LineGraph = (): JSX.Element => {
|
||||
},
|
||||
]}
|
||||
uppercaseHeader={false}
|
||||
rowRibbonColor={(_datum, index) => getSeriesColor(index)}
|
||||
rowRibbonColor={(_datum, index) =>
|
||||
ySeriesData[index]?.settings?.display?.color ?? getSeriesColor(index)
|
||||
}
|
||||
showHeader
|
||||
/>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user