Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@opitzconsulting/bubble-chart
Advanced tools
animated bubble chart component with optional pictures
An animated bubble chart component with optional pictures, displaying all changes with smooth transitions.
The library has been developed with Angular 6. It should work with older versions of Angular too, but this isn't tested yet.
This repository is maintained by volunteers of OPITZ CONSULTING Deutschland GmbH.
There is a demo component BubbleChartDemoComponent
in this repository at https://github.com/opitzconsulting/ngx-d3.
npm install @opitzconsulting/bubble-chart
In your application root module definition add BubbleChartModule
.
import { BubbleChartModule } from '@opitzconsulting/bubble-chart';
@NgModule({
bootstrap: [ /* ... */ ],
declarations: [ /* ... */ ],
imports: [
/* ... */
BubbleChartModule
]
})
export class AppModule {}
In your components template add oc-bubble-chart
tag.
<oc-bubble-chart [data]="bubbleChartData" width="250" height="250"></oc-bubble-chart>
In your component class you can declare the data:
import { BubbleChartData } from 'oc-bubble-chart';
/* ... */
public bubbleChartData: Array<BubbleChartData>: Array<BubbleChartData> = [
{ caption: 'apples', value: 10, color: 'green', imagePath: './assets/pathToImage.png' },
{ caption: 'oranges', value: 20, color: 'orange' },
{ caption: 'bananas', value: 30, color: 'yellow' }
];
Properties:
data
(Array<BubbleChartData>
) - Array of entries with caption and value. A fixed color can also be specified optional. An image could be displayed by define imagePath-Property.width
(number
) - The chart width in pixel (default 500).height
(number
) - The chart height in pixel (default 500).duration
(number
) - The duration of any animations in milliseconds (default 1000).Events
chartClick
: fires when click on a chart has occured, returns regarding chart entry.chartHover
: fires when mouseover (hover) on a chart has occured, returns regarding chart entry.License
This implementation is released unter the Apache License v2.
The library is based on D3.js, which has been published under an BSD 3-Clause "New" or "Revised" License.
FAQs
animated bubble chart component with optional pictures
We found that @opitzconsulting/bubble-chart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.