Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
victory-sunburst
Advanced tools
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:
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;
}
Please see DEVELOPMENT
Please see CONTRIBUTING
FAQs
Victory Component
We found that victory-sunburst demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.