All charts with PNG and/or SVG exports:
- Expose
isPrintingImgandisPrintingSvgbooleans in #svg slot, allowing to control eventual additional content during the print process.
<VueUiXy :dataset="dataset" :config="config">
<template #svg={ svg }>
<g v-html="addContent(svg)"/>
</template>
</VueUiXy>function addContent({ isPrintingSvg, isPrintingImg, ...rest }) {
return ''
}