All Projects → recogizer → gauge-chart

recogizer / gauge-chart

Licence: MIT license
Gauge Chart Library

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to gauge-chart

Amcharts4
The most advanced amCharts charting library for JavaScript and TypeScript apps.
Stars: ✭ 907 (+1915.56%)
Mutual labels:  charts, charting-library
Svelte Frappe Charts
📈 Svelte bindings for frappe-charts.
Stars: ✭ 111 (+146.67%)
Mutual labels:  charts, charting-library
Teechart Vcl Samples
Sample programs showing how to use TeeChart VCL for Delphi and C++ Builder
Stars: ✭ 24 (-46.67%)
Mutual labels:  charts, charting-library
Reactochart
📈 React chart component library 📉
Stars: ✭ 459 (+920%)
Mutual labels:  charts, charting-library
Graphic
A Flutter data visualization library based on Grammar of Graphics.
Stars: ✭ 173 (+284.44%)
Mutual labels:  charts, charting-library
Lavacharts
Lavacharts is a graphing / charting library for PHP 5.4+ that wraps Google's Javascript Chart API.
Stars: ✭ 587 (+1204.44%)
Mutual labels:  charts, charting-library
Echarts
Apache ECharts is a powerful, interactive charting and data visualization library for browser
Stars: ✭ 49,119 (+109053.33%)
Mutual labels:  charts, charting-library
Lightweight Charts
Financial lightweight charts built with HTML5 canvas
Stars: ✭ 4,390 (+9655.56%)
Mutual labels:  charts, charting-library
Matplotplusplus
Matplot++: A C++ Graphics Library for Data Visualization 📊🗾
Stars: ✭ 2,433 (+5306.67%)
Mutual labels:  charts, charting-library
React D3 Components
D3 Components for React
Stars: ✭ 1,599 (+3453.33%)
Mutual labels:  charts, charting-library
Flutter echarts
A Flutter widget to use Apache ECharts (incubating) in a reactive way.
Stars: ✭ 420 (+833.33%)
Mutual labels:  charts, charting-library
Angular Chartist.js
Angular directive for Chartist.js
Stars: ✭ 206 (+357.78%)
Mutual labels:  charts, charting-library
React Jsx Highcharts
Highcharts built with proper React components
Stars: ✭ 336 (+646.67%)
Mutual labels:  charts, charting-library
Chartkick.py
Create beautiful Javascript charts with minimal code
Stars: ✭ 695 (+1444.44%)
Mutual labels:  charts, charting-library
Fcharts
📊 [wip] Create beautiful, responsive, animated charts using a simple and intuitive API.
Stars: ✭ 318 (+606.67%)
Mutual labels:  charts, charting-library
Devextreme
HTML5 JavaScript Component Suite for Responsive Web Development
Stars: ✭ 1,385 (+2977.78%)
Mutual labels:  charts, charting-library
React Chartjs 2
React components for Chart.js, the most popular charting library
Stars: ✭ 4,667 (+10271.11%)
Mutual labels:  charts, charting-library
Anychart
AnyChart is a lightweight and robust JavaScript charting solution with great API and documentation. The chart types and unique features are numerous, the library works easily with any development stack.
Stars: ✭ 288 (+540%)
Mutual labels:  charts, charting-library
Anychart Android
AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
Stars: ✭ 1,762 (+3815.56%)
Mutual labels:  charts, charting-library
Plotly.js
Open-source JavaScript charting library behind Plotly and Dash
Stars: ✭ 14,268 (+31606.67%)
Mutual labels:  charts, charting-library

Gauge Chart

A library for creating nice and flexible gauge charts.

GitHub Workflow Status code style: prettier

Demo

Installation

The easiest way to get started is to install it via npm. When you import it in you code, then by default it will use CommonJS module.

  npm install gauge-chart
const GaugeChart = require('gauge-chart')

You can also import the library as ES Module:

import * as GaugeChart from 'https://unpkg.com/gauge-chart@next/dist/bundle.mjs'

Usage

Create an element for positioning gauge in your html file:

<div id="gaugeArea"></div>

Now you're ready to draw your own gauge.

Just copy this code into your Javascript or Typescript file or into <script> </script> tags in HTML file:

// Element inside which you want to see the chart
let element = document.querySelector('#gaugeArea')

// Properties of the gauge
let gaugeOptions = {
  hasNeedle: true,
  needleColor: 'gray',
  needleUpdateSpeed: 1000,
  arcColors: ['rgb(44, 151, 222)', 'lightgray'],
  arcDelimiters: [30],
  rangeLabel: ['0', '100'],
  centralLabel: '50',
}

// Drawing and updating the chart
GaugeChart.gaugeChart(element, 300, gaugeOptions).updateNeedle(50)

Result:

Gauge Example

By default, the needle is pointing to 0, thus in order to move it you have to use .updateNeedle(val), where val denotes the value on the chart.

Feel free to change or delete any of the gaugeOptions properties as long as their values are in permitted ranges.

Options

gaugeOptions: { ... }

Name Values Ranges Description
hasNeedle true / false determines whether to show the needle or not
needleColor value supported by CSS colorizes needle with specified colors
needleUpdateSpeed number ⩾ 0 determines the speed of needle update animation
arcColors array of values supported by CSS colorizes gauge with specified color
arcDelimiters array of numbers from 0 to 100 specifies delimiters of the gauge in ascending order
arcOverEffect true / false determines if over effect on ars is enabled or not
arcLabels array of strings specifies labels to be placed at delimiters ends
arcPadding number specifies padding between arcs (in pixels)
arcPaddingColor value supported by CSS color of the padding between delimeters
rangeLabel array of two strings depicts gauge ranges on both sides of the chart
centralLabel string depicts gauge inner label
labelsFont string specifies font-family to be used for labels

.gaugeChart( ... )

Name Values Ranges Description
element html element specifies an element which contains a chart
chartWidth number larger than 0 gives a width to the gauge (height is always 0.5 * chartWidth)
gaugeOptions object provides gauge properties (can be empty)

.updateNeedle( ... )

Name Values Ranges Description
needleValue number from 0 to 100 specifies needle value on the gauge

Examples

Some examples of what you can get out of the library using different properties:

Gauge Examples

Contributing

Build the library with npm run build. This will compile the dist files. To see the examples locally you can start a web server with npm run dev.

Authors

Alexey Karpov, Maxim Maltsev.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].