All Projects → clarketm → Highcharts More

clarketm / Highcharts More

Universal highcharts-more module for the popular JavaScript charting framework Highcharts

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Highcharts More

Polyglot
A universal grpc command line client
Stars: ✭ 488 (+6871.43%)
Mutual labels:  universal
Awesome Nextjs
📔 📚 A curated list of awesome resources : books, videos, articles about using Next.js (A minimalistic framework for universal server-rendered React applications)
Stars: ✭ 6,812 (+97214.29%)
Mutual labels:  universal
Chartkick.py
Create beautiful Javascript charts with minimal code
Stars: ✭ 695 (+9828.57%)
Mutual labels:  highcharts
Universal Starter
Angular 9 Universal repo with many features
Stars: ✭ 518 (+7300%)
Mutual labels:  universal
Uuid Readable
Generate Easy to Remember, Readable UUIDs, that are Shakespearean and Grammatically Correct Sentences 🥳
Stars: ✭ 616 (+8700%)
Mutual labels:  universal
Vortigern
A universal boilerplate for building web applications w/ TypeScript, React, Redux, Server Side Rendering and more.
Stars: ✭ 647 (+9142.86%)
Mutual labels:  universal
Aachartkit
📈📊🚀🚀🚀An elegant modern declarative data visualization chart framework for iOS, iPadOS and macOS. Extremely powerful, supports line, spline, area, areaspline, column, bar, pie, scatter, angular gauges, arearange, areasplinerange, columnrange, bubble, box plot, error bars, funnel, waterfall and polar chart types. 极其精美而又强大的跨平台数据可视化图表框架,支持柱状图、条形图、折…
Stars: ✭ 4,358 (+62157.14%)
Mutual labels:  highcharts
Usus
Webpage pre-rendering service. ⚡️
Stars: ✭ 804 (+11385.71%)
Mutual labels:  universal
Gatsby Universal
🔮 An opinionated Gatsby v2 starter for state-of-the-art marketing sites.
Stars: ✭ 617 (+8714.29%)
Mutual labels:  universal
Justpy
An object oriented high-level Python Web Framework that requires no frontend programming
Stars: ✭ 689 (+9742.86%)
Mutual labels:  highcharts
Rill
🗺 Universal router for web applications.
Stars: ✭ 541 (+7628.57%)
Mutual labels:  universal
Jimureport
积木报表,是一款免费的企业级低代码报表!类似于excel操作风格,在线拖拽完成报表设计!功能涵盖: 报表设计、图形报表、打印设计、大屏设计等,永久免费!领先的企业级Web报表软件,采用纯Web在线技术,专注于解决企业报表快速制作难题。
Stars: ✭ 598 (+8442.86%)
Mutual labels:  highcharts
Universal
Seed project for Angular Universal apps featuring Server-Side Rendering (SSR), Webpack, CLI scaffolding, dev/prod modes, AoT compilation, HMR, SCSS compilation, lazy loading, config, cache, i18n, SEO, and TSLint/codelyzer
Stars: ✭ 669 (+9457.14%)
Mutual labels:  universal
Angular Material App
基于最新Angular 9框架与Material 2技术的web中后台前端应用框架。
Stars: ✭ 509 (+7171.43%)
Mutual labels:  universal
Hackernews
HackerNews clone built with Nuxt.js
Stars: ✭ 758 (+10728.57%)
Mutual labels:  universal
Upash
🔒Unified API for password hashing algorithms
Stars: ✭ 484 (+6814.29%)
Mutual labels:  universal
React Redux Universal Hot Example
A starter boilerplate for a universal webapp using react, redux, express and feathers
Stars: ✭ 639 (+9028.57%)
Mutual labels:  universal
Universal React Base
[OUTDATED] Super basic example to get you started with Universal (😦) React/Redux (+ API requests). Lightweight and straightforward.
Stars: ✭ 6 (-14.29%)
Mutual labels:  universal
Catberry
Catberry is an isomorphic framework for building universal front-end apps using components, Flux architecture and progressive rendering.
Stars: ✭ 793 (+11228.57%)
Mutual labels:  universal
Chartkick
Create beautiful JavaScript charts with one line of Ruby
Stars: ✭ 5,903 (+84228.57%)
Mutual labels:  highcharts

Highcharts-More

The universal highcharts-more module. This module can be loaded as an ES6, AMD, CommonJS or global module, in NodeJS or in the browser. It works with most modern module loaders (ES6, RequireJS, SystemJS). This package is generated based on the latest highcharts v5.0.12 release.

highcharts-more requires the highcharts module

What is Highcharts?

Highcharts JS is a JavaScript charting library based on SVG, with fallbacks to VML and canvas for old browsers. To avoid bloating the Highcharts core library, the Highcharts team deploy new chart types and features in a separate file called highcharts-more.js. In short, highcharts-more is extra functionality on top of Highcharts without modifying it's core code. It also allows you to use some charts types which don't exist in the "original" highcharts such as bubble, range, gauge and pollar charts.

Installation

$ npm install highcharts-more-node

Example Usage

Please note that there are several ways to use Highcharts. For general installation instructions, see the docs.

First, install the highcharts and highcharts-more packages.

$ npm install highcharts-more-node

Now import highcharts-more into your projects which will also import the highcharts core module.

// import Highcharts-More (no need to import `highcharts` since it's wrapped by `highcharts-more`)
import {Highcharts} from 'highcharts-more-node'
// OR
import Highcharts from 'highcharts-more-node'   


export class GaugeChartExample {

  constructor() {
  
    // create the chart
    Highcharts.chart({
      chart: {
        type: 'gauge' // available ONLY with highcharts-more
      },
      // ...................................
      // ... chart configuration options ...
      // ...................................
    });
  };
  
}
Helpful links
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].