Skip to content

v2.4.60

Compare
Choose a tag to compare
@graphieros graphieros released this 30 Dec 09:46
· 352 commits to master since this release

Customizable chart background

A new slot was added on most components to customize background (image, gradient, etc.)

<VueUiXy :dataset="dataset" :config="config">
  <template #chart-background>
    <div :style="{ height: '100%', width: '100%' }">
      <img src="space.png" alt="space" class="h-full w-full object-cover">
    </div>
  </template>
</VueUiXy>

image