clinical-timelines
clinical-timelines is a JavaScript library for visualizing clinical events over time by participant.
Resources
Installing
If you use npm, npm install clinical-timelines
. Otherwise, download the latest release. The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from rawgit. For example:
<script type = 'text/javascript' src = 'https://d3js.org/d3.v3.js'></script>
<script type = 'text/javascript' src = 'https://rawgit.com/RhoInc/clinical-timelines/master/build/Webcharts.js'></script>
<script type = 'text/javascript' src = 'https://rawgit.com/RhoInc/clinical-timelines/master/build/clinicalTimelines.js'></script>
clinical-timelines is written using ES2015 modules. To import clinical-timelines into an ES2015 application, import its only module (here, clinicalTimelines
):
import clinicalTimelines from "clinical-timelines";
In Node:
var clinicalTimelines = require("clinical-timelines");