0.0.11 • Published 4 months ago

@flowtools/uplot v0.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Vue 3 uplot that is responsive

Demo

StackBlitz

usage

pnpm add @flowtools/uplot uplot @vueuse/core

Usage

<script setup lang="ts">
import { ref } from 'vue'
import type { AlignedData, Options } from '@flowtools/uplot'
import { Uplot } from '@flowtools/uplot'

const options = ref<Options>({
  series: [
    {},
    { label: 's1', stroke: 'red' },
    { label: 's2', stroke: 'green' },
    { label: 's3', stroke: 'blue' },
  ],
})
const data = ref<AlignedData>([[1654575670], [10], [10], [10]])
</script>

<template>
  <Uplot :options="options" :data="data" />
</template>

Customizing

You can use header and footer slots to add or customize the header and legend. Both slots receive the same props: series an array of series and toggleShow a function to toggle the show value of the series.

<template>
  <Uplot :options="options" :data="data">
    <template #header>
      <h2>Header</h2>
    </template>
    <template #footer="{ series, toggleShow }">
      <div class="d-flex gap-3">
        <div v-for="s in series" :key="s.label" class="legend-item" @click="toggleShow(s)">
          <div class="badge" :style="{ backgroundColor: s.show ? s.stroke || 'var(--bs-secondary)' : 'lightgrey' }">
            {{ s.label }} : {{ s.value || '--' }} {{ s.show }}
          </div>
        </div>
      </div>
    </template>
  </Uplot>
</template>

Interacting with the uplot

There are many examples of interacting with the chart in the uplot demos.

The component emits events for series, cursor, and selection. You can use these events to get data from the component.

One way to interact with the chart is to use the ref prop to get a reference to the uplot component that exposes the uplot instance. Then you can use the uplot API to interact with the chart.

For more information see App.vue in the repo.

0.0.10

4 months ago

0.0.11

4 months ago

0.0.9

4 months ago

0.0.8

4 months ago

0.0.7

10 months ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago