
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
graphics-canvas
Advanced tools
npm install --save graphics-canvas
import React, { Component } from 'react'
import { Piechart } from 'graphics-canvas'
import 'graphics-canvas/src/piechart.scss' // optional if you`ll use your css
// Data format
const data = [
{
data: "Such a big label",
count: 10000,
},
{
data: "Medium label",
count: 34000,
},
{
data: "Label",
count: 28000,
},
]
// You can provide colors or it`ll be by default
const colors = [
'#00b275ff',
'#57ffb6ff',
'#f8ff33ff',
'#e9b44cff',
'#e4d6a7ff',
'#ff5446ff',
'#ff0aadff',
'#de0affff',
'#0052b2ff'
]
class Example extends Component {
render() {
return <Piechart
smallRadius={55} // Inner circle radius (optional)
containerClass={"diagramContainer"} // Container class (optional if you use default css)
infoClass={"statisticDiagram"} // Labels class (optional if you use default css)
colors={colors} // Colors (optional)
data={data} // Data (required)
radius={115} // Outer circle radius (required)
background={"white"} // Diagramm background color (optional)
/>
}
}
<div class="YourContainerClass">
<div class="YourContainerClass__tooltip">
<p className="YourContainerClass__tooltip--text">
Label Count %...
</p>
</div>
<canvas>
<div class="YourInfoClass">
<ul class="YourInfoClass__list">
<li class="YourInfoClass__item">
<span class="YourInfoClass__color"></span>
<p class="YourInfoClass__text">Label</p>
</li>
...
</ul>
</div>
</div>
import React, { Component } from 'react'
import { Histogram } from 'graphics-canvas'
import 'graphics-canvas/src/histogram.scss' // optional if you`ll use your css
// Data format
const data = [
{
label: 'Label 1',
values: [
{
title: 'Smt 1',
count: 10000
},
{
title: 'Smt 2',
count: 20000
}
]
},
{
label: 'Label 2',
values: [
{
title: 'Smt 1',
count: 40000
}
]
},
{
label: 'Label 3',
values: [
{
title: 'Smt 1',
count: 75000
},
{
title: 'Smt 2',
count: 80000
},
{
title: 'Smt 3',
count: 90000
}
]
},
{
label: 'Label 4',
values: [
{
title: 'Smt 1',
count: 100000
},
{
title: 'Smt 2',
count: 110000
},
{
title: 'Smt 3',
count: 120000
}
]
},
{
label: 'Label 5',
values: [
{
title: 'Smt 1',
count: 40000
},
{
title: 'Smt 2',
count: 50000
},
{
title: 'Smt 3',
count: 30000
}
]
},
{
label: 'Label 6',
values: [
{
title: 'Smt 1',
count: 40000
},
{
title: 'Smt 2',
count: 50000
},
{
title: 'Smt 3',
count: 30000
}
]
},
{
label: 'Label 7',
values: [
{
title: 'Smt 1',
count: 40000
},
{
title: 'Smt 2',
count: 50000
},
{
title: 'Smt 3',
count: 30000
}
]
}
]
// You can provide colors or it`ll be by default
const colors = [
'#00B275',
'#F8FF33',
'#FF5446',
'#0052B2',
'#AABBFF'
]
class Example extends Component {
render() {
return <Histogram
containerClass={"histogramContainer"} // Histogram container class (optional)
colors={colors} // Provide you colors (optional)
background={'white'} // Background color (optional)
data={data} // Data (required)
range={2} // Bodred-radius of columns (optional)
columnWidth={20} // Column width (optional)
columnMargin={5} // Column margin (optional)
fontFamily={'Arial'} // Font family (you need link font in your css)
fontSize={14} // Text font size
/>
}
}
<div class="histogramContainer">
<div class="histogramContainer__tooltip">
<p class="histogramContainer__tooltip--text">Smt 3... 120000</p>
</div>
<canvas width="865" height="250"></canvas>
</div>
MIT © fateseekers
FAQs
Graphics diagrams by clear JavaScript
The npm package graphics-canvas receives a total of 9 weekly downloads. As such, graphics-canvas popularity was classified as not popular.
We found that graphics-canvas 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.