vueplotlib
This repository will serve as a place for reusable Vue plot components (built with D3). These components were developed for use in ExploSig.
Features
- Declarative: declare scales, data, and styling options
- Interactive: hover and click events, axis brushing, downloading (to SVG)
- Fast: canvas plots
- Linked: declarative API enables automatic linking of scales across plots
- History: record interactions for forward/backward navigation, import/export (via JSON)
- Composable: axes and legends are separate from plots, mix and match
- Customizable: extend the scale classes (see GenomeScale, BinaryScale). extend the history capabilities.
Installation
yarn add vueplotlib
Example Usage
Please see the vueplotlib-examples repository for minimal examples of usage.
Plot Components
- BarPlot
β - StackedBarPlot
β - ScatterPlot
β - TrackPlot
β - MultiTrackPlot
β - BoxPlot
β - MultiBoxPlot
β - HierarchicalMultiTrackPlot
β
Stratified Plot Components
- StratifiedBoxPlot
β - StratifiedScatterPlot
β - StratifiedSinaPlot
β - StratifiedKaplanMeierPlot
β
Genome Plot Components
- GenomeScatterPlot
β - GenomeStackedBarPlot
β - GenomeTrackPlot
β - GenomeMultiTrackPlot
β
Axis Components
- Axis
β - GenomeAxis
β - DendrogramAxis
β
Legend Components
- CategoricalLegend
β - ContinuousLegend
β
Other Components
- PlotContainer
β - SortOptions
β
Future Plans for Components
- GenomeBarPlot
- GroupedBarPlot
- ViolinPlot
- SinaPlot
- BeeswarmPlot
- JitterPlot
- HorizontalBarPlot
- HorizontalStackedBarPlot
- HorizontalBoxPlot
- HorizontalMultiBoxPlot
- LinePlot
- KaryotypePlot
- GenomeGenePlot
Development
Install dependencies:
yarn
Serve for development at http://localhost:8080:
yarn run serve
Build for production (generates /dist
and /examples
):
yarn run build
Run tests with jest:
yarn run test
Compile documentation with documentationjs:
yarn run docs
This was inspired by the following projects: