šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

d3-axis-norender

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

d3-axis-norender

Return axis object for scales.

1.0.8-r4
latest
Source
npm
Version published
Maintainers
3
Created
Source

d3-axis-norender

This is the same d3-axis by Mike Bostock but without rendering inside a selection, if you do not know about it we suggest you take a look there first, most likely it is what you are looking for.

No selection is needed to be passed, this lib returns the axis as a Javascript Object instead, the Object is in this format:

{
  anchor: 'middle', // anchor of the svg text element
  path: { d: 'M0.5,6V0.5H1.5V6' }, // svg path designing the line of the axis
  ticks: [ // list of ticks
    { transform: 'translate(0,0.5)',
      line: { y2: 6 },
      text: { dy: '0.32em', text: '0.00', y: 9 }
    },
    ...
    ...
    { transform: 'translate(0,1.5)',
      line: { y2: 6 },
      text: { dy: '0.32em', text: '1.00', y: 9 }
    }
  ]
}

Installing

If you use NPM, npm install d3-axis-norender. Otherwise, download the latest release. You can also load directly from jsdelivr.net.

<script src="https://cdn.jsdelivr.net/npm/d3-axis-norender"></script>
<script>

var axis = d3.axisLeft(scale);
console.log(axis)
</script>

Try d3-axis-norender in your browser.

Keywords

d3

FAQs

Package last updated on 08 Aug 2018

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