vue-timeline-chart
v2.5.0
Published
Vue3 Timeline Chart component
Downloads
653
Maintainers
Readme
Features
- Zooming
- Infinite scrolling (using native horizontal scroll events, use shift+scroll to convert vertical to horizontal mouse scrolling)
- Plotting ranges, points, markers and backgrounds
- Adjustable timestamp labels per scale
- Customizable
Live demo
API documentation and examples
Usage
npm add vue-timeline-chart
import { Timeline } from 'vue-timeline-chart'
import 'vue-timeline-chart/style.css'
Example
<Timeline
:groups="groups"
:items="items"
:markers="markers"
:viewportMin="1691089380000"
:viewportMax="1691101020000"
:minViewportDuration="1000 * 60"
:maxViewportDuration="1000 * 60 * 60 * 24 * 7"
@mousemoveTimeline="onMousemoveTimeline"
@mouseleaveTimeline="onMouseleaveTimeline"
>
<template #group-label="{ group }">
{{ group.label }}
</template>
<template #item="{item}">
<div
:title="item.title || null"
style="inset: 0; position: absolute;"
></div>
</template>
</Timeline>
Development
Install dependencies:
pnpm install
Dev server with live reloading
pnpm start
Building the application and watching for changes
pnpm dev