Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

d3plus-priestley

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

d3plus-priestley

A reusable Priestley timeline built on D3.

  • 0.1.15
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
369
decreased by-51.76%
Maintainers
1
Weekly downloads
 
Created
Source

d3plus-priestley

NPM Release Build Status Dependency Status Slack

A reusable Priestley timeline built on D3.

Installing

If you use NPM, npm install d3plus-priestley. Otherwise, download the latest release. The released bundle supports AMD, CommonJS, and vanilla environments. Create a custom bundle using Rollup or your preferred bundler. You can also load directly from d3plus.org:

<script src="https://d3plus.org/js/d3plus-priestley.v0.1.full.min.js"></script>

Getting Started

Priestly Timelines (named after 18th-century English theologian Joseph Priestly), show the duration of multiple data points over time by stacking blocks to best fit. Given data with unique IDs and start and end dates:

var data = [
  {id: "alpha",   start: 2004, end: 2007},
  {id: "epsilon", start: 2007, end: 2012},
  {id: "beta",    start: 2005, end: 2010},
];

It's only requires a few lines of code to create a Priestly Timeline:

new d3plus.Priestley()
  .data(data)
  .render();

Click here to view this example live on the web.

More Examples

API Reference

Priestley ⇐ Viz

Kind: global class
Extends: Viz

new Priestley()

Creates a priestley timeline based on an array of data.

Priestley.axisConfig([value]) ↩︎

If value is specified, sets the config method for the axis and returns the current class instance. If value is not specified, returns the current axis configuration.

Kind: static method of Priestley
Chainable

ParamType
[value]Object

Priestley.end([value]) ↩︎

If value is specified, sets the end accessor to the specified function or key and returns the current class instance. If value is not specified, returns the current end accessor.

Kind: static method of Priestley
Chainable

ParamType
[value]function | String

Priestley.start([value]) ↩︎

If value is specified, sets the start accessor to the specified function or key and returns the current class instance. If value is not specified, returns the current start accessor.

Kind: static method of Priestley
Chainable

ParamType
[value]function | String
Documentation generated on Tue, 20 Dec 2016 20:42:11 GMT

Keywords

FAQs

Package last updated on 20 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc