Skip to content
Snippets Groups Projects
Unverified Commit e3f166bf authored by Aleksandr Lesnenko's avatar Aleksandr Lesnenko Committed by GitHub
Browse files

fix timeline events covers series (#43780)

parent 6d0f5e69
No related branches found
No related tags found
No related merge requests found
......@@ -9,11 +9,11 @@ export const LINE_SIZE: Record<LineSize, number> = {
export const Z_INDEXES = {
// Note: timeline events use echarts' markline option, which has a fixed z
// value of 5.
dataLabels: 3,
goalLine: 2,
trendLine: 2,
lineAreaSeries: 2,
series: 1, // Bars needs to have a lower z value than line/area series, see issue #40209
dataLabels: 8,
goalLine: 7,
trendLine: 7,
lineAreaSeries: 7,
series: 6, // Bars needs to have a lower z value than line/area series, see issue #40209
};
export const CHART_STYLE = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment