Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@density/chart-historical-counts
Advanced tools
A graph of counts over time for a given space. npm
This chart has a single default export. This exported function takes two arguments: a dom element, and an object full of properties. When called, this chart will render the chart inside the given DOM element. See the below example.
import countGraph from '@density/chart-count-graph';
// or: const countGraph = require('@density/chart-count-graph').default;
const element = document.getElementById('chart-container');
const props = {data: []};
countGraph(element, props);
In addition, if you'd like to render a chart in a context where the DOM is abstracted away from you, such as a React or Angular app, then check out our companion helper library.
data
: An array of {count: <count at a given time>, timestamp: <iso 8601 timestamp>, flag?: <boolean>}
objects. Any objects with the "flag"
property set to true
will draw in a flag at that timestamp with its count. Data must be in chronological order.
Example: [{"count": 4, "timestamp": "2017-03-28T12:00:00.000Z"}, {"count": 3, "timestamp": "2017-03-28T12:01:00.000Z", "flag": true}]
start
(optional) A moment that will be used as the starting point of the graph. If omitted, the graph will fit its data.
end
(optional) A moment that will be used as the ending point of the graph. If omitted, the graph will fit its data.
width
(optional) An integer that denotes the width of this chart in pixels. Defaults to 1000.
height
(optional) An integer that denotes the width of this chart in pixels. Defaults to 400.
initialCount
(optional) An integer to specify what the count was before the first event. Defaults to 0.
.
├── index.js # Contains main chart code. Other javascript files may be present.
├── package.json
├── story.js # Contains a react-storyboard story. Use it to present different states of your chart in the parent project.
└── styles.scss # Contains all chart styles.
FAQs
Historical Counts chart
The npm package @density/chart-historical-counts receives a total of 1 weekly downloads. As such, @density/chart-historical-counts popularity was classified as not popular.
We found that @density/chart-historical-counts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.