npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ngx-dino/force-network

v0.11.0

Published

Visualization framework and library for Angular 7+

Downloads

5

Readme

Force Network

Draws a force-directed graph. Read more at d3-force-simulation.

Installing

npm i --save @ngx-dino/core @ngx-dino/force-network

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { CoreModule } from '@ngx-dino/core';
import { ForceNetworkModule } from '@ngx-dino/force-network';


@NgModule({
...
imports: [CommonModule, CoreModule, ForceNetworkModule, ...]
...
})

Usage Example

<dino-force-network
	[height]="height"
	[width]="width"
	[margin]="margin"
	[nodeSizeField]="fields.nodeSizeField"
	[nodeIdField]="fields.nodeIdField"
	[nodeColorField]="fields.nodeColorField"
	[nodeLabelField]="fields.nodeLabelField"
	[linkIdField]="fields.edgeIdField"
	[linkSourceField]="fields.edgeSourceField"
	[linkTargetField]="fields.edgeTargetField"
	[linkSizeField]="fields.edgeSizeField"
	[nodeColorRange]="nodeColorRange"
	[nodeSizeRange]="nodeSizeRange"
	[enableTooltip]="enableTooltip"
	[tooltipTextField]="fields.tooltipTextField"
	[chargeStrength]="visChargeStrength"
	[nodeStream]="nodeStream"
	[linkStream]="edgeStream">
</dino-force-network>

API Summary

dino-force-network

| Name | Type | Description | | --- | --- | --- | | [nodeStream] | Observable<RawChangeSet<any>> | Data stream of nodes | [linkStream] | Observable<RawChangeSet<any>> | Data stream of links | [margin] | Object | Margin values for the visualization container. Usage Format - { top: 20, right: 15, bottom: 60, left: 60 } | [width] | number | Width of the visualization container | [height] | number | Height of the visualization container | [nodeSizeField] | BoundField<string> | Field encoding for size of nodes | [nodeColorField] | BoundField<string> | Field encoding for color of nodes | [nodeIdField] | BoundField<string> | Field encoding for ID of nodes | [nodeLabelField] | BoundField<string> | Field encoding for labels of nodes | [labelSizeField] | string | Field encoding for size of labels of nodes Not supported currently. | [linkIdField] | BoundField<string> | Field encoding for ID of links | [linkSourceField] | BoundField<string> | Field encoding for sources of links | [linkTargetField] | BoundField<string> | Field encoding for targets of links | [linkSizeField] | BoundField<number> | Field encoding for size/thickness of links | [linkColorField] | string | Field encoding for color of links | [linkOpacityField] | string | Field encoding for opacity of links | [tooltipTextField] | BoundField<number | string> | Field encoding for tooltip text | [enableTooltip] | boolean | Tooltip toggle | [nodeSizeRange] | number[] | Size range for nodes | [labelSizeRange] | number[] | Size range for labels | [nodeColorRange] | string[] | Color range for nodes | [linkSizeRange] | number[] | Size/thickness range for links | [linkColorRange] | string[] | Color range for links | [linkOpacityRange] | number[] | Opacity range for links | [minPositionX] | number | Not supported currently. | [minPositionY] | number | Not supported currently. | [chargeStrength] | number | Charge force between nodes in the force simulation. Read more at d3-force/manyBody_strength | [linkDistance] | number | Link distance parameter for the force-network simulation. Read more - "The link force pushes linked nodes together or apart according to the desired [link distance]"(https://github.com/d3/d3-force/blob/master/README.md#link_distance)

Keywords

force-simulation, d3, angular, typescript, visualization