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

@density/chart-count-graph

Package Overview
Dependencies
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@density/chart-count-graph - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

6

dist/index.js

@@ -140,3 +140,7 @@ 'use strict';

var yPosition = yScale(i.count);
return total + 'H' + xPosition + 'V' + yPosition;
if (xPosition >= 0) {
return total + 'H' + xPosition + 'V' + yPosition;
} else {
return total;
}
}, '');

@@ -143,0 +147,0 @@

@@ -137,3 +137,7 @@ import './styles.scss';

const yPosition = yScale(i.count);
return `${total}H${xPosition}V${yPosition}`;
if (xPosition >= 0) {
return `${total}H${xPosition}V${yPosition}`;
} else {
return total;
}
}, '');

@@ -140,0 +144,0 @@

2

package.json
{
"name": "@density/chart-count-graph",
"version": "1.0.4",
"version": "1.0.5",
"description": "Count Graph chart",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

# Count Graph Chart
A graph of counts over time for a given space.
A graph of counts over time for a given space. [npm](https://npmjs.com/@density/chart-count-graph)
![Chart Example](chart.gif)
![Chart Example](https://i.imgur.com/IucfBdE.gif)

@@ -6,0 +6,0 @@ # Using this chart

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