You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
749 B
32 lines
749 B
import { useTimeout } from '/@/hooks/core/useTimeout';
|
|
import { tryOnUnmounted } from '/@/utils/helper/vueHelper';
|
|
import { unref, Ref, nextTick } from 'vue';
|
|
|
|
import ApexCharts from 'apexcharts';
|
|
|
|
export function useApexCharts(elRef: Ref<HTMLDivElement>) {
|
|
let chartInstance: Nullable<ApexCharts> = null;
|
|
|
|
function setOptions(options: any) {
|
|
nextTick(() => {
|
|
useTimeout(() => {
|
|
const el = unref(elRef);
|
|
|
|
if (!el || !unref(el)) return;
|
|
chartInstance = new ApexCharts(el, options);
|
|
|
|
chartInstance && chartInstance.render();
|
|
}, 30);
|
|
});
|
|
}
|
|
|
|
tryOnUnmounted(() => {
|
|
if (!chartInstance) return;
|
|
chartInstance.destroy();
|
|
chartInstance = null;
|
|
});
|
|
|
|
return {
|
|
setOptions,
|
|
};
|
|
}
|
|
|