Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@opitzconsulting/bubble-chart

Package Overview
Dependencies
Maintainers
3
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opitzconsulting/bubble-chart

animated bubble chart component with optional pictures

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

BubbleChart

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

Package last updated on 29 Jun 2018

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