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

@hotnipi/node-red-dashboard-2-ui-gauge-linear

v0.0.6

Published

A linear style gauge node for @flowfuse/node-red-dashboard

Downloads

581

Readme

A linear type of gauge node for node-red dashboard 2.0

A linear type of gauge node for the flowfuse Node-RED Dashboard 2.0

linear gauge for node-red dashboard 2.0

Install

The usual method of installing is to use Manage Palette in the node red editor and search for @hotnipi/node-red-dashboard-2-ui-gauge-linear and install it.

Using npm directly, cd into your node red user directory (usually .node-red in your home folder) and from there run

npm install @hotnipi/node-red-dashboard-2-ui-gauge-linear

Inputs

Pass the value in msg.payload. This may be a Number or a string that represents a number.

Certain configuration values can be overridden dynamically be passing in an object in msg.ui_update. See Dynamic Properties below.

Configuration

  • Name - The name of the node.

  • Group - The display group in which to show the gauge.

  • Size - The size of the gauge on the dashboard.

  • Label - A text label that is shown above the gauge's bar.

  • Limits Min and Max - These specify the range of the gauge. Values are mandatory. Optionally you can configure labels for limits. If configured, the label is shown instead of value.

  • Ticks - This defines intermediate values under the gauge bar. Each row defines the value of the tick and as for limits, optionally the label for tick can be configured.

  • Bar - The bar beahvior and colors. Select the mode first and the configure the colors and maybe count of the cells. You can always change the mode but whenever you have selected a mode which makes same color for all cells, you'll need configure the colors again.

    • Select Mode - Select the mode of the bar beahvior. "Default" - basic mode. "Full Bar Color" - all bar cells change the color based on value. "Cross Zero" - The left end of the bar is zero. The right end is even positiove or negative limit. The bar switches color based of value being positive or negative. If Min and Max are configured equally far from zero, it is possible to configure intermediate ticks. Otherwise ticks are not available for this mode.

    • Pick Color - Use color picker to select the color and then drag over the bar to apply the selected color to the desired cells. Repeat this step to apply different colors for different bar regions. Note that for "Cross Zero" mode it takes to configure different colors for positive and negative occurence.

    • Add cell - Adds a cell to the bar end. (if there is less than 60)

    • Remove cell - Removes a cell from the bar end. (until there is only 2)

  • Icon - An icon that is shown in front of the gauge's bar. Gauge supports Material design icons.

  • Unit - The unit string to show in the gauge.

  • Dim - The value for how much non-active cells will dim down. Number in range 0.1 - 0.8

  • Class - A CSS Class that will be applied to the gauge to allow override of display element style.

Dynamic Properties

Certain properties can be overridden by passing an object in msg.ui_update. The name of the item in msg.ui_update is generally the name of the propety being overridden. For example, the Ticks definitions may be changed by passing in array in msg.ui_update.ticks.

  • Colors - If msg.ui_update.colors contains an array then that will be used to override all cells. The array must contain a list of colors:
    ["green","green","green","red"] Define color for each cell.
  • Min - If msg.ui_update.min is present and contains an object {value:10} or {value:10,label:"Ten"} then min limit of the gauge will be changed.
  • Max - If msg.ui_update.max is present and contains an object {value:10} or {value:10,label:"Ten"} then max limit of the gauge will be changed.
  • Unit - If msg.ui_update.unit is present and contains a string then that string will be displayed in the units field in the gauge.
  • Ticks - If msg.ui_update.ticks contains an array then that will be used to override all ticks. The format of the tick in the array is same as for min and max. [{value:10},{value:30}] or [{value:10,label:"Ten"}]
  • ZeroCrossColors - If msg.ui_update.zeroCrossColors contains an array then that will be used to override colros when gauge mode is Cross Zero. Two colors must be defined in array representing colors for negative and positive ["red","green"]
  • Icon - If msg.ui_update.icon is present and contains a icon name as string then gauge changes the icon. Note that you can not change the icon if you didn't configure the gauge to have icon.

CSS overrides

Display elements my be overriden in the normal way using a ui-template node. In particular:

The color of the value

.myclass .hotnipi-gauge-linear-value{
    color: red;
}

Other notes

  • Count of cells - The optimal count of the cells is about 20. Cell count is limited: min 2, max 60 .You are free to configure any amout of cells in this range but pay attention for 2 key things.
    • Too many elements may affect the performance of the dashboard.
    • The node is made responsive. If you are using it with small screen and there is not enough space to render elements, the gauge tries to hold important elements visible by removing less important elements. Every second cell is removed to keep other cells size reasonable. This also means that if you configure single cell with one color, it may be removed if conditions met.