Sha256: bdd58ad51670eca0ae16862b5efa5ea9d08be890e3d9d4d44ae64fecce61ee58
Contents?: true
Size: 1.93 KB
Versions: 1
Compression:
Stored size: 1.93 KB
Contents
## Ruby wrapper for Highcharts.js and Highstock.js charting libraries The goal of this project is to wrap the Highcharts and Highstock APIs in Opal, providing a simple Ruby interface to Highcharts' functionality. To find out more about Highcharts, check out these links: * Highcharts: http://www.highcharts.com/products/highcharts * Highcharts Demos: http://www.highcharts.com/demo * Highstock Demos: http://www.highcharts.com/stock/demo To find out more about Opal, go to http://opalrb.org ## Installation Install opal-highcharts from RubyGems: ``` $ gem install opal-highcharts ``` Or include it in your Gemfile for Bundler: ```ruby gem 'opal-highcharts' ``` ## Cloning this repository ``` $ git clone https://github.com/balmoral/opal-highcharts ``` ## Getting Started ### Usage `opal-highcharts` can be added to your opal application sources using a standard require: ```ruby # app/application.rb require 'opal' require 'opal/highcharts' ``` > You need to bring your own `highcharts.js` or `highstock.js` file. > If you require Highstock functionality use `highstock.js`, which includes Highcharts. > If you only require Highcharts functionality use `highcharts.js`. > Download from > http://code.highcharts.com/highcharts.js or > http://code.highcharts.com/stock/highstock.js > and put the file in `app/` or whichever directory you are compiling assets from. ## To do * Implement Highstock features * Documentation * Testing ## Getting involved To contribute to this project, follow the steps below. 1. Fork the repo ( https://github.com/balmoral/opal-highcharts/fork ) 2. Create your feature branch (`git checkout -b new-branch`) 3. Commit your changes (`git commit -am 'description of commit'`) 4. Push to the branch (`git push origin new-branch`) 5. Create a Pull Request Contributions welcome. ## Licenses ### Highcharts Free for non-commercial use. See http://www.highcharts.com/ for details. ###opal-highcharts MIT Licence. See LICENSE.txt
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opal-highcharts-0.1.3 | README.md |