New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

phovea_d3

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

phovea_d3

DEPRECATED: D3 utilitities for Phovea

  • 7.0.1
  • latest
  • Source
  • npm
  • Socket score

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

DEPRECATED: phovea_d3

Phovea NPM version Build Status

This plugin provides several D3 modules and applications, such as: selection info, data browser, visual links between views.

DEPRECATION Information

Please note that this project has been archived and is no longer being maintained. There is an active development under https://github.com/datavisyn/tdp_core and we will also contribute our future changes to it.

Installation

git clone https://github.com/phovea/phovea_d3.git
cd phovea_d3
npm install

Testing

npm test

Building

npm run build

Usage

Selectioninfo

Databrowser

Provides easy-to-setup browsing capabilities for caleydo-data.

Add to your app

import module in your main.ts:

import databrowser = require('phovea_d3/databrowser');

Add anchor element to your DOM:

<div id="databrowser"></div>

Create the databrowser in your main.ts:

databrowser.create(document.getElementById('databrowser'));
Options
databrowser.create(document.getElementById('databrowser'), {
      layout: 'tree',
      draggable: true,
      filter: function(d) { 
        // filter out all the datasets that don't have "Test" in the description!
        return (d && d.desc.name.indexOf("Test") > -1);
      }
    });
NameValues
layouttree, list
draggabletrue, false
filterprovide a callback function!

This repository is part of Phovea, a platform for developing web-based visualization applications. For tutorials, API docs, and more information about the build and deployment process, see the documentation page.

FAQs

Package last updated on 30 Nov 2021

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