
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
angular-d3-cloud
Advanced tools
D3 Cloud component for Angular built upon d3-cloud
# for Angular 20
npm install --save angular-d3-cloud@^20.0.0
# for Angular 19
npm install --save angular-d3-cloud@^19.0.0
# for Angular 18
npm install --save angular-d3-cloud@^18.0.0
# for Angular 17
npm install --save angular-d3-cloud@^17.0.0
# for Angular 16
npm install --save angular-d3-cloud@^2.0.0
# for Angular < 16
npm install --save angular-d3-cloud@^1.0.0
First import the package to your app module
// Angular >= 20
import { AngularD3Cloud } from 'angular-d3-cloud';
@Component({
selector: 'app-root',
imports: [AngularD3Cloud],
templateUrl: './app.html',
styleUrl: './app.scss',
})
export class App {}
// Angular 19
import { AngularD3CloudComponent } from 'angular-d3-cloud';
@Component({
selector: 'app-root',
imports: [AngularD3CloudComponent],
})
export class AppComponent {}
// app.module.ts (Angular < 19)
import { AngularD3CloudModule } from 'angular-d3-cloud'
@NgModule({
imports: [
AngularD3CloudModule
],
...
})
Now the component is ready to use.
<!-- app.component.html -->
<angular-d3-cloud
[data]="data"
[width]="700"
[height]="600"
[padding]="5"
font="serif"
[rotate]="0"
[autoFill]="true"
(wordClick)="onWorkClick($event)"
></angular-d3-cloud>
// app.component.ts
export class AppComponent {
data = [
"Hello", "world", "normally", "you", "want", "more", "words",
"than", "this"].map(function (d) {
return { text: d, value: 10 + Math.random() * 90};
})
}
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| data | The input data for rendering | Array<{ text: string, value: number }> | ✓ | |
| width | Width of component (px) | number | 700 | |
| height | Height of component (px) | number | 600 | |
| fontSizeMapper | Map each element of data to font size (px) | Function: (word: string, idx: number): number | word => word.value; | |
| rotate | Map each element of data to font rotation degree. Or simply provide a number for global rotation. (degree) | Function | number | 0 | |
| padding | Map each element of data to font padding. Or simply provide a number for global padding. (px) | Function | number | 5 | |
| font | The font of text shown | Function | string | serif | |
| fontWeight | Weight of the font | string | number | 'normal' | |
| autoFill | Whether texts should be fill with random color or not | boolean | false | |
| fillMapper | Function used by autoFill to map each data item to a fill color. Can be used to customize the way autoFill generate colors | Function: (word: Word, index: number): string | A function based on schemeCategory10 of d3-scale-chromatic | |
| animations | Whether animated transitions is active or not | boolean | false |
| Name | Description | Payload |
|---|---|---|
| wordClick | Event triggered when click event triggered on a word | { event: MouseEvent, word: Word } |
| wordMouseOver | Event triggered when mouseover event triggered on a word | { event: MouseEvent, word: Word } |
| wordMouseOut | Event triggered when mouseout event triggered on a word | { event: MouseEvent, word: Word } |
The
Wordinterface imported fromd3-cloud
Run the following commands to start sample project:
ng build angular-d3-cloud --watch
npm start # in a separate terminal
This project is built with the idea of React D3 Cloud
FAQs
D3 word cloud component for Angular built upon d3-cloud
The npm package angular-d3-cloud receives a total of 129 weekly downloads. As such, angular-d3-cloud popularity was classified as not popular.
We found that angular-d3-cloud demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.