plotsvy
v0.4.3
Published
A CSV plotter that loads and plots timeseries or static data
Downloads
11
Readme
Tehsurfer/plotsvy
A CSV file web viewer focused on viewing ephys and RNA seq data.
View the latest online demo at: https://plotsvy-demo.netlify.com (This demo is deployed from tehsurfer/plotsvy:netlify-hosting)
Devloper Installation
git clone https://github.com/ABI-Software/plotsvy.git
- Install Node.js if you do not have it (check using
npm -v
) - Navigate to the
plotsvy/
directory and:
npm install
npm run pub
npm run start
and follow the link tohttp://127.0.0.1:8080
Initialising the app and using external API's
// Initialises app
var myChart = new plotsvy(targetDiv)
// Initialises app and load csv file.
var myChart = new plotsvy(targetDiv, 'path/to/any/csv/file.csv')
// Recieve alerts on state of app
myChart.openBroadcastChannel('plot-channel');
bc = new BroadcastChannel.default('plot-channel');
bc.addEventListener('message', onMessage);