npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bare-minimum-text-marker

v0.0.7

Published

A plugin for [bare-minimum-2d](https://www.npmjs.com/package/bare-minimum-2d) for plotting points with text labals.

Downloads

26

Readme

Bare minimum text marker

A plugin for bare-minimum-2d for plotting points with text labals.

Demo

How to use it


import BareMinimum2d from 'bare-minimum-2d'
import textMarker from 'bare-minimum-text-marker'

function Space() {

  let points = [{
    x: [496],
    y: [1014],
    label: 'Alpha Centauri',
    id: 'alpha-cent',
    type: 'textMarker',
    size: 1,
    opacity: 1,
    color: 'white',
    size: 2,
  }]

  return (
    <BareMinimum2d
      data={points}
      plugins={[textMarker]}
    />
  )
}

Options

The following options can be used for a single point.

label

The text marker's text.

Default value: (empty sting)

pointer

Symbol used as a marker, that marks the position of the point. Make sure the character is available in your font.

Default value:

yOffset

Vertical offset of the pointer to the datapoint. You might like to adjust that to your fontFamily and Pointer.

Default value: size÷3

gap

Distance between the center of the pointer and the start of the label.

Default value: size÷2

fontFamily

font-family of both the pointer and the label

Default value: (empty sting) – user agent decides

color

fill color of both the pointer and the label

Default value: (empty string) – rendered as black

size

font-size of both the pointer and the label.

Default value: 16

opacity

Opacity of both the pointer and the label.

Default value: 1

Note that you'll still be able to apply css.

layout

Array of possible label layouts in order of priority. Each entry myst be one of 'north', 'east', 'south' or 'west'.

Example: ['north', 'east', 'south'] would mean:

  1. Try to place it north.
  2. If the space in the north is already occupied, try east.
  3. If the space in the east is occupied, try south.
  4. If the space in the south is occupied, don't show the label at all.

You might want to keep this array short for better performance.

Default value: ['east', 'west', 'south', 'north']

How to build the example

npm install && npm run build && cd example && npm install && npm run start