Description
A charting library built with the Ember.js and d3.js frameworks. It includes time series, bar, pie, and scatter charts which are easy to extend and modify. The out-of-the-box behavior these chart components represents our thoughts on best practices in chart interactivity and presentation.
Ember Charts alternatives and similar libraries
Based on the "d3" category.
Alternatively, view Ember Charts alternatives based on common mentions on social networks and blogs.
-
echarts
Apache ECharts is a powerful, interactive charting and data visualization library for browser -
fabric.js
Javascript Canvas Library, SVG-to-Canvas (& canvas-to-SVG) Parser -
BabylonJS
Babylon.js is a powerful, beautiful, simple, and open game and rendering engine packed into a friendly JavaScript framework. -
p5.js
p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web. It is based on the core principles of Processing. http://twitter.com/p5xjs — -
paper.js
The Swiss Army Knife of Vector Graphics Scripting – Scriptographer ported to JavaScript and the browser, using HTML5 Canvas. Created by @lehni & @puckey -
Frappe Charts
Simple, responsive, modern SVG Charts with zero dependencies -
sigma.js
A JavaScript library aimed at visualizing graphs of thousands of nodes and edges -
dc.js
Multi-Dimensional charting built to work natively with crossfilter rendered with d3.js -
mxGraph
Diagramming library that enables interactive graph and charting applications to be quickly created that run natively in any major browser that is supported by its vendor. -
two.js
A renderer agnostic two-dimensional drawing api for the web. -
heatmap.js
🔥 JavaScript Library for HTML5 canvas based heatmaps -
rickshaw
JavaScript toolkit for creating interactive real-time graphs -
metrics-graphics
A library optimized for concise and principled data graphics and layouts. -
cubism
Cubism.js: A JavaScript library for time series visualization. -
processing.js
Processing.js makes your data visualizations work using web standards and without any plug-ins -
react-simple-maps
Beautiful React SVG maps with d3-geo and topojson using a declarative api. -
d3plus
A javascript library that extends D3.js to enable fast and beautiful visualizations. -
Bezier.js
A nodejs and client-side library for (cubic) Bezier curve work -
jquery.sparkline
A plugin for the jQuery javascript library to generate small sparkline charts directly in the browser -
uvCharts
Simple yet powerful JavaScript Charting library built using d3.js -
pykcharts.js
Well designed d3.js charting without the complexity of d3.js. -
dhtmlxSuite v.7.3.0 Standard edition
GPL version of DHTMLX Suite -
COVID-19 in Charts
Visual representations of the progression of COVID-19.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Ember Charts or a related project?
README
Ember Charts 
A charting library built with the Ember.js and d3.js frameworks. It includes time series, bar, pie, and scatter charts which are easy to extend and modify. The out-of-the-box behavior these chart components represents our thoughts on best practices in chart interactivity and presentation.
Demo and Documentation
https://opensource.addepar.com/ember-charts/
Getting Started
JS Bin Starter Kit
https://emberjs.jsbin.com/rekawobugu/1/edit
Unfortunately, this version of Ember Charts is out of date, and the current maintainers of Ember Charts at Addepar have not been able to update it recently.
Installation with Ember CLI (Recommended)
Ember Charts is an Ember CLI addon published to the public NPM repository at https://www.npmjs.com/package/ember-charts , so it can be installed like so:
# ember-cli >= 0.2.0
ember install:addon ember-charts
# ember-cli >= 0.2.3
ember install ember-charts
Once it's installed, you can customize the look of Ember Charts with CSS.
Installation with Bower (Globals-Based Version)
npm install -g bower # install Bower
bower install ember-charts --save
Using Ember Charts with bower is deprecated and will eventually be removed. We recommend that you migrate your apps to Ember CLI! Documentation has been updated to show Ember CLI usage. If you need documentation for globals-based use, please check out version 0.5.0 of Ember Charts and follow the setup instructions under "Running Old Versions" to display the old guides.
Developing or Testing
After cloning this repo, install dependencies and run the demo application:
yarn
bower install
ember serve
Now you can:
- View the demos and read the documentation: http://localhost:4200
- Run tests: http://localhost:4200/tests
Dependencies
- ember
- lodash
- d3
- jquery-ui
Browser Support
We aim to support the last two major versions of every common browser.
If you need to support further browsers, we welcome pull requests with fixes.
Touch support may work but has not been tested.
Contributing
Got something to add? Great! Bug reports, feature ideas, and (especially) pull requests are extremely helpful, and this project wouldn't be where it is today without lots of help from the community.
Please read the [contribution guidelines](CONTRIBUTING.md) for directions on opening issues and working on the project.
Versioning
Ember Charts uses Semantic Versioning to keep track of releases using the following format:
<major>.<minor>.<patch>
In a nutshell, this means:
- Breaking changes to the API or behavior increases the major version
- Adding functionality in a backwards-compatible way increases the minor version
- Making backwards-compatible bug fixes increases the patch version
Releasing a New Version (For Maintainers)
Prior to releasing, ensure that the CHANGELOG.md is updated to track any changes that have been made since the prior release.
We increment version numbers and release using release-it:
npm run release -- <options>
The local configuration file for release-it
is named .release-it.json
, found in the
root directory of the repository.
By default, release-it
without options will increment the
version number (X.Y.Z
--> X.Y.(Z+1)
) in the VERSION
file and
package.json
file, and then commit the resulting changes to the ember-charts
git repository.
If you want to control the version number, use these options:
npm run release -- major # 1.2.3 -> 2.0.0
npm run release -- minor # 1.2.3 -> 1.3.0
npm run release -- X.Y.Z # 1.2.3 -> X.Y.Z
Ember Charts has also configured release-it
to automatically update the gh-pages
branch (from which the demo and documentation website is published). This is done by
pushing the /ember-dist/
directory after constructing it with ember build
.
These commands can be seen in the .release-it.json
file.
release-it
is also configured to automatically publish the updated version to
npm
.
Lastly, the new version should be released on Github, which can be done via the Github UI after the steps above are complete.
Copyright and License
Copyright © 2013 Addepar, Inc. All Rights Reserved
Licensed under the BSD License (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the [LICENSE.md](LICENSE.md) file.
*Note that all licence references and agreements mentioned in the Ember Charts README section above
are relevant to that project's source code only.