This is a Vue component for line graph data visualizations. It is currently undergoing development and will be published as an npm package upon completion. In the future it will be extended to bar graphs as well.
As a simple example, the following Vue.js section:
<div class="flex-row">
<div class="flex-row-item" >
<LineGraph :graphTitle="'Example 1'" />
</div>
<div class="flex-row-item" >
<LineGraph :graphTitle="'Example 2'" />
</div>
<div class="flex-row-item" >
<LineGraph :graphTitle="'Example 3'" />
</div>
</div>
This repository contains a demonstration app to explore and test out the component:
The aim of this component is to support:
- Multiple y-axes
- Multiple time series
- Hybrid line and bar graphs
- Customizable interactivity
- Custom datetime formatting
npm install
npm run serve
npm run build
npm run lint