🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@density/chart-total-visits

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@density/chart-total-visits

Total Visits chart

latest
npmnpm
Version
0.0.6
Version published
Maintainers
4
Created
Source

Total Visits

Shows the total number of visits per day over a given period of time

Here's what it looks like.

Using this chart

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 totalVisits from '@density/chart-total-visits';
// or: const totalVisits = require('@density/chart-total-visits').default;

const element = document.getElementById('chart-container');
const props = {dates: [], totalVisits: []};
totalVisits(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.

Properties

  • dates: An array of dates, formatted as YYYY-MM-DD. Example: ["2017-05-04", "2017-05-05", ...]
  • totalVisits: An array of integers indicating the total number of visits for the corresponding day in the dates array.

How this chart is structured

.
├── 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

Package last updated on 17 May 2017

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