ghalex / vue3-charts

Vue3-Charts is an SVG-based charting library that is very easy to use and highly customizable
https://vue3charts.org
MIT License
135 stars 23 forks source link

Tooltip z-index issue when having multiple charts #50

Closed gijsbertpieterbrouwer closed 1 year ago

gijsbertpieterbrouwer commented 1 year ago

Hi, I am having an issue with multiple pie-charts on the same page. The issue is seen in the screenshot. The tooltip is shown underneath the second chart. Is there anything I can do to prevent this?

image

gijsbertpieterbrouwer commented 1 year ago

Fixed in styling with:

.v-tooltip {
  z-index: 10000;
}