@@ -617,7 +617,7 @@ defineExpose({
617617 v-if =" isProcessable"
618618 :id =" `${chartType}_${uid}`"
619619 ref =" quickChart"
620- class =" vue-ui-quick-chart"
620+ : class =" {' vue-ui-quick-chart': true, 'vue-data-ui-wrapper-fullscreen' : isFullscreen } "
621621 :style =" `background:${quickConfig.backgroundColor};color:${quickConfig.color};font-family:${quickConfig.fontFamily}; position: relative`"
622622 >
623623
@@ -1168,30 +1168,31 @@ defineExpose({
11681168 </div >
11691169 </template >
11701170 </div >
1171+
1172+ <Tooltip
1173+ :show =" quickConfig.showTooltip && isTooltip"
1174+ :backgroundColor =" quickConfig.backgroundColor"
1175+ :color =" quickConfig.color"
1176+ :parent =" quickChart"
1177+ :content =" tooltipContent"
1178+ :isCustom =" isFunction(quickConfig.tooltipCustomFormat)"
1179+ >
1180+ <template #tooltip-before >
1181+ <slot name =" tooltip-before" v-bind =" {...dataTooltipSlot}" ></slot >
1182+ </template >
1183+ <template #tooltip-after >
1184+ <slot name =" tooltip-after" v-bind =" {...dataTooltipSlot}" ></slot >
1185+ </template >
1186+ </Tooltip >
11711187 </div >
11721188 <div v-else class =" vue-ui-quick-chart-not-processable" >
11731189 <BaseIcon name =" circleCancel" stroke =" red" />
11741190 <span >Dataset is not processable</span >
11751191 </div >
1176-
1177- <Tooltip
1178- :show =" quickConfig.showTooltip && isTooltip"
1179- :backgroundColor =" quickConfig.backgroundColor"
1180- :color =" quickConfig.color"
1181- :parent =" quickChart"
1182- :content =" tooltipContent"
1183- :isCustom =" isFunction(quickConfig.tooltipCustomFormat)"
1184- >
1185- <template #tooltip-before >
1186- <slot name =" tooltip-before" v-bind =" {...dataTooltipSlot}" ></slot >
1187- </template >
1188- <template #tooltip-after >
1189- <slot name =" tooltip-after" v-bind =" {...dataTooltipSlot}" ></slot >
1190- </template >
1191- </Tooltip >
11921192</template >
11931193
11941194<style scoped>
1195+ @import " ../vue-data-ui.css" ;
11951196.vue-ui-quick-chart * {
11961197 transition : unset ;
11971198}
0 commit comments