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

victory-sunburst

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

victory-sunburst

Victory Component

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

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

Travis Status

Victory Sunburst

victory-sunburst draws an SVG sunburst chart with React and D3. Styles and data can be customized by passing in your own values as properties to the component. Data changes are (not yet) animated with victory-animation.

##Examples

The plain component has baked-in sample data and defaults, so rendering the sunburst with no custom properties, like so:

<VictorySunburst/>

Will look like this:

Sunburst Image

The API

Props

All props are optional. They can be omitted and the component will still render with random data.

The following props are supported:

####data

An object, with nested properties to make up the tree datastructure as shown below. If the data prop is omitted, the sunburst will render sample data. The data has the format:

{
  "name": "foo",
  "children": [
    {
      "name": "qux",
      "children": [
        {"name": "asdfgdfs", "size": 98765},
        {"name": "qwertyui", "size": 54321}
      ]
    },
    {"name": "bar", "size": 12345},
    {"name": "baz", "size": 5678}
  ]
}

Note that only leaves have size.

Default value: flare.json

####width

A number

Default value: 700

####height

A number

Default value: 700

####radius

A function Responsible for making sure the visualization is smaller than the SVG.

Default value:

  radius: (width, height) => {
    return Math.min(width, height) / 2;
  }

Development

Please see DEVELOPMENT

Contributing

Please see CONTRIBUTING

FAQs

Package last updated on 23 Sep 2015

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