mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 00:47:50 +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}
|
uppercaseHeader={false}
|
||||||
rowRibbonColor={(_datum, index) => getSeriesColor(index)}
|
rowRibbonColor={(_datum, index) =>
|
||||||
|
ySeriesData[index]?.settings?.display?.color ?? getSeriesColor(index)
|
||||||
|
}
|
||||||
showHeader
|
showHeader
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user