Build v2.5.0
A declarative, efficient, and simple JavaScript library for building responsive charts. With integrations in Angular, React, JQuery, PHP, Ember, & Backbone.
bower install zingchart
npm install zingchart
http://cdn.zingchart.com/zingchart.min.js
cdn on cdnjs
https://cdnjs.com/libraries/zingchart
Include a reference to the zingchart library
<script src="zingchart.min.js"></script>
The zingchart
object is now accessible. Happy charting!
<div id="chart"></div>
<script>
window.onload = function() {
zingchart.render({
id: "chart",
data: {
type: "line",
series: [{ values: [5,10,15,5,10,5] }]
}
});
};
</script>
This package supports the CommonJS module format to be used with bundlers such as Browserify when being used with NPM.
Usage : var zingchart = require('zingchart');
The package includes the following:
| README.md
├── client
│ ├── zingchart.min.js
│ ├── modules
├── custom
│ ├── build.js
| ...
(requires Node.js)
The zingchart.min.js file in the root directory is a fully functional build which includes the majority of functionality within the library. If you wanted to slim down the library and only provide functionality that you need, we have included a build tool that allows you to create a custom library build for the client side version. The /modules folder contains a complete collection of dependencies for the zingchart library.
For example, if you wanted to create a build that only contained functionality for line and pie charts, you would run the command
$ node build.js <configPath> <modules>
configPath
(optional) - The path to the .cnf file to provide module optionsmodules
(optional) -The module arguments to provide the build tool without using a .cnf file.
Both examples will provide the same functionality for the line/pie example.
$ node build.js zingchart.cnf
Inside zingchart.cnf
:
{"modules":["line","pie"]}
$ node build.js line pie
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.
We're always working on new demos to help users get started using ZingChart with their framework or database. Take a look at our Demo repo to see if we've covered your toolset. Let us know if we haven't or if you need help with an existing implementation.
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