Socket
Socket
Sign inDemoInstall

chartjs-plugin-draggable

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chartjs-plugin-draggable

Draggable element plugin for Chart.js


Version published
Weekly downloads
687
increased by8.87%
Maintainers
1
Weekly downloads
 
Created
Source

chartjs-plugin-draggable.js

A plugin for Chart.js >= 2.4.0

Makes elements such as annotations movable via drag and drop.

Configuration

To make an element draggable, simply add the following options to the element's config section.

{
    ...
    draggable: true,
    onDragStart: function(event) {

    },
    onDrag: function(event) {

    },
    onDragEnd: function(event) {

    }
}

Supported Elements

Annotations

Requires chartjs-plugin-annotation.js >= 0.3.0.

Line annotations are supported:

var options = {
    ...
    annotation: {
        annotations: [
            {
                type: 'line',
                mode: 'horizontal',
                scaleID: 'y-axis-0',
                value: 25,
                draggable: true,
                onDrag: function(event) {
                    console.log(event.subject.config.value);
                }
            }
        ]
    }
};

To-do Items

The following features still need to be done:

  • Box annotation support
  • Skewed line annotation support

Installation

To install via npm:

npm install chartjs-plugin-annotation --save

Or, download a release archive file from the releases page.

Contributing

Before submitting an issue or a pull request to the project, please take a moment to look over the contributing guidelines first.

License

chartjs-plugin-draggable.js is available under the MIT license.

Keywords

FAQs

Package last updated on 05 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