All Projects β†’ zingchart β†’ Zingchart

zingchart / Zingchart

A declarative, efficient, and simple JavaScript library for building responsive charts

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Zingchart

Devextreme
HTML5 JavaScript Component Suite for Responsive Web Development
Stars: ✭ 1,385 (+489.36%)
Mutual labels:  charts, responsive
Quasar Apexcharts
πŸ“Š πŸ“ˆ πŸ“‰ Project using Quasar framework and ApexCharts.
Stars: ✭ 94 (-60%)
Mutual labels:  charts, responsive
Chartbrew
Open-source web platform for creating charts out of different data sources (databases and APIs) πŸ“ˆπŸ“Š
Stars: ✭ 199 (-15.32%)
Mutual labels:  charts
Cedar
JavaScript Charts for ArcGIS
Stars: ✭ 230 (-2.13%)
Mutual labels:  charts
Vuemmerce
πŸ‘‰ Responsive ecommerce template πŸ›’ built with Vue.js and Nuxt.js
Stars: ✭ 223 (-5.11%)
Mutual labels:  responsive
Xamarin Demos
This repository contains the Syncfusion Xamarin UI control’s samples and the guide to use them.
Stars: ✭ 218 (-7.23%)
Mutual labels:  charts
Hugo Theme M10c
A minimalistic (m10c) blog theme for Hugo
Stars: ✭ 223 (-5.11%)
Mutual labels:  responsive
Angular Chartist.js
Angular directive for Chartist.js
Stars: ✭ 206 (-12.34%)
Mutual labels:  charts
React Firebase Admin
React βš›οΈ starter kit with Firebase πŸ”₯ and Bulma for setting up an admin dashboard - Highly scalable, PWA, Serverless
Stars: ✭ 232 (-1.28%)
Mutual labels:  responsive
Simple Dash
A simple, fully responsive Dashboard to forward to the services of your choice!
Stars: ✭ 222 (-5.53%)
Mutual labels:  responsive
Medium Zoom
πŸ”ŽπŸ–Ό A JavaScript library for zooming images like Medium
Stars: ✭ 2,799 (+1091.06%)
Mutual labels:  no-dependencies
Bitcoin Chart Cli
Bitcoin chart for the terminal as command line util
Stars: ✭ 221 (-5.96%)
Mutual labels:  charts
Displaceable
A tiny, performant and configurable JavaScript library that smoothly displaces elements on mouse move.
Stars: ✭ 219 (-6.81%)
Mutual labels:  no-dependencies
Validate
A lightweight form validation script.
Stars: ✭ 227 (-3.4%)
Mutual labels:  no-dependencies
Keen Dataviz.js
Data Visualization Charting Library
Stars: ✭ 215 (-8.51%)
Mutual labels:  charts
Numl
A UI Design Language, WC UI Library, and Runtime CSS Framework for rapidly building interfaces that follow your Design System 🌈
Stars: ✭ 229 (-2.55%)
Mutual labels:  responsive
Igrowl
Growl-like notifications with an emphasis on icons
Stars: ✭ 208 (-11.49%)
Mutual labels:  responsive
Reaviz
πŸ“Š Data visualization library for React based on D3
Stars: ✭ 215 (-8.51%)
Mutual labels:  charts
Portfolio Demo
A portfolio build by using flutter for web.
Stars: ✭ 224 (-4.68%)
Mutual labels:  responsive
Rfs
✩ Automates responsive resizing ✩
Stars: ✭ 2,789 (+1086.81%)
Mutual labels:  responsive

ZingChart

Our JavaScript charting library is a commercial product. But the full branded version is free to try, forever.

npm

Install

CDN

We publish our live, dev and ALL previous builds on our CDN. This is the quickest way to get started.

Current Version

Current Version and Modules (https://cdn.zingchart.com/zingchart.min.js | https://cdn.zingchart.com/modules/)

https://cdn.zingchart.com/zingchart.min.js
https://cdn.zingchart.com/modules/
ES6 Version

ES6 Version and Modules (https://cdn.zingchart.com/zingchart-es6.min.js | https://cdn.zingchart.com/modules-es6/)

https://cdn.zingchart.com/zingchart-es6.min.js
https://cdn.zingchart.com/modules-es6/

Package Managers

We have a variety of package managers to download our library, as well as integrations

npm

npm install zingchart

nuget

If you are looking for the ZingChart package and are a .NET user go to nuget package here.

Install-Package ZingChart -Version 2.5.0

Integrations

Installing our integration packages will also install the library for you. ZingChart is wrapped in a variety of ways for easy consumption with popular JS libraries and frameworks. Official releases are shown here. If you have a third party integration please contact us for inclusion.

Angular
npm install zingchart-angular
React
npm install zingchart-react
Vue
npm install zingchart-vue
Web Component
npm install zingchart-web-component
AngularJS
npm install zingchart-angularjs

List of integrations:

Quick Start es5

Include a reference to the zingchart library

<!DOCTYPE html>
<html>
<head>
  <!--Script Reference [1] -->
  <script src="/zingchart/zingchart.min.js"></script>

</head>
<body>
  <!--Chart Component [2] -->
  <div id="myChart"></div>

  <script>
    let chartData = {
      type: 'pareto',
      series: [
        {
          values: [
            4642,
            4345,
            2350,
            1251
          ]
        }
      ]
    };

    // Render Method[3]
    zingchart.render({ 
      id: 'myChart',
      data: chartData,
      height: 400,
      width: '100%'
    });
  </script>
</body>
</html>

Quick Start es6 Imports

A general best practice to use ZingChart in any of your frameworks is used in the following:

import {zingchart, ZC} from 'zingchart/zingchart-es6';

And if you have and modules you want to include you do the following

import {pareto} from 'zingchart/modules-es6/zingchart-pareto.min.js';

Quick Start es6 w/Script Modules

<!DOCTYPE html>
<html>
<head>
  <!-- fallback for no module support -->
  <script nomodule src="/zingchart/zingchart.min.js"></script>
</head>
<body>
  <!-- Chart Component [2] -->
  <div id="myChart"></div>

  <script type="module">
    
    import {zingchart, ZC} from './zingchart/zingchart-es6.js';
    import './zingchart/modules-es6/zingchart-pareto.min.js';
    
    let chartConfig = {
      type: 'pareto',
      series: [
        {
          values: [
            4642,
            4345,
            2350,
            1251
          ]
        }
      ]
    };

    // Render Method[3]
    zingchart.render({ 
      id: 'myChart',
      data: chartConfig,
      height: 400,
      width: '100%'
    });
  </script>
</body>
</html>

Resources:

Package Directory

The package includes the following:

|   README.md
|   zingchart.min.js
|   zingchart-es6.min.js
β”œβ”€β”€ modules
|   β”œβ”€β”€ zingchart-3d.min.js
|   β”œβ”€β”€ ...
β”œβ”€β”€ modules-es6
|   β”œβ”€β”€ zingchart-3d.min.js
|   β”œβ”€β”€ ...

Support

If you need any assistance or would like to report any bugs found in ZingChart, please contact us at [email protected] or through our chat client on our website www.zingchart.com

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].