const config = ref({
  style: {
    labels: {
      value: {
        show: true, // new, default: true
      },
      timeLabel: {
        show: true, // new, default: true
      },
      valueLabel: {
        show: true, // new, default: true
      },
    },
  },
});const config = ref({
  style: {
    chart: {
      grid: {
        frame: {
          show: false,
          stroke: "#E1E5E8",
          strokeWidth: 2,
          strokeLinecap: "round",
          strokeLinejoin: "round",
          strokeDasharray: 0,
        },
      },
    },
  },
});const config = ref({
  style: {
    chart: {
      tooltip: {
        showTotal: false,
        totalTranslation: "Total",
      },
    },
  },
});<VueUiXy :dataset="dataset" :config="config">
  <template #annotator-action-close>
    <MyCloseIcon />
  </template>
  <template #annotator-action-color="{ color }">
    <MyColorIcon :color="color" />
  </template>
  <template #annotator-action-draw="{ mode }">
    <MyDrawIcon v-if="mode === 'draw'" />
    <MyTextIcon v-else />
  </template>
  <template #annotator-action-undo="{ disabled }">
    <MyUndoIcon />
  </template>
  <template #annotator-action-redo="{ disabled }">
    <MyRedoIcon />
  </template>
  <template #annotator-action-delete="{ disabled }">
    <MyDeleteIcon />
  </template>
</VueUiXy>