{"_id":"flotr2","_rev":"3-9e7c3e3cc7dfb32d27f3f23e8b0cda32","name":"flotr2","description":"A library for drawing HTML5 charts and graphs.","dist-tags":{"latest":"0.1.0"},"versions":{"0.1.0":{"name":"flotr2","version":"0.1.0","description":"A library for drawing HTML5 charts and graphs.","homepage":"http://www.humblesoftware.com/flotr2","bugs":{"url":"https://github.com/HumbleSoftware/Flotr2/issues"},"license":"MIT","author":{"name":"Carl Sutherland","email":"carl@humblesoftware.com","url":"https://github.com/cesutherland"},"repository":{"type":"git","url":"git+https://github.com/HumbleSoftware/Flotr2.git"},"devDependencies":{"smoosh":"0.4.1"},"private":false,"main":"flotr2.min.js","directories":{"example":"examples"},"dependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["flotr2"],"gitHead":"df0ddedcab1a8fdb3a7abafc5fe97819931e7bd5","_id":"flotr2@0.1.0","_shasum":"8d31b0d1b3dc46f5e399edeb7a179e075b36e036","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.7.0","_npmUser":{"name":"lu4","email":"denis.yaremov@gmail.com"},"dist":{"shasum":"8d31b0d1b3dc46f5e399edeb7a179e075b36e036","tarball":"https://registry.npmjs.org/flotr2/-/flotr2-0.1.0.tgz","integrity":"sha512-6JvA9O09AP9zWFKgO+QycLUkgydtciewM0OtV5d4lG39QlqxxkQv3Mgv5Fd8URBr8AW29RLFEyaFpUhugWR8Mg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjDn1nUaC60f+z7qEUr7W4MF2pgpNfVvId/y+I3IvtGAIgK89ex/iOHhnaVtmyyR6RJgz3677rB6wCqPmavB3yqaU="}]},"maintainers":[{"name":"lu4","email":"denis.yaremov@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/flotr2-0.1.0.tgz_1482007236386_0.3935716697014868"}}},"readme":"Flotr2\n======\n\nThe Canvas graphing library.\n\n![Google Groups](http://groups.google.com/intl/en/images/logos/groups_logo_sm.gif)\n\nhttp://groups.google.com/group/flotr2/\n\nPlease fork http://jsfiddle.net/cesutherland/ZFBj5/ with your question or bug reproduction case.\n\n\nAPI\n---\n\nThe API consists of a primary draw method which accepts a configuration object, helper methods, and several microlibs.\n\n### Example\n\n```javascript\n  var\n    // Container div:\n    container = document.getElementById(\"flotr-example-graph\"),\n    // First data series:\n    d1 = [[0, 3], [4, 8], [8, 5], [9, 13]],\n    // Second data series:\n    d2 = [],\n    // A couple flotr configuration options:\n    options = {\n      xaxis: {\n        minorTickFreq: 4\n      }, \n      grid: {\n        minorVerticalLines: true\n      }\n    },\n    i, graph;\n\n  // Generated second data set:\n  for (i = 0; i < 14; i += 0.5) {\n    d2.push([i, Math.sin(i)]);\n  }\n\n  // Draw the graph:\n  graph = Flotr.draw(\n    container,  // Container element\n    [ d1, d2 ], // Array of data series\n    options     // Configuration options\n  );\n```\n\n### Microlibs\n\n* [underscore.js](http://documentcloud.github.com/underscore/)\n* [bean.js](https://github.com/fat/bean)\n\nExtending\n---------\n\nFlotr may be extended by adding new plugins and graph types.\n\n### Graph Types\n\nGraph types define how a particular chart is rendered.  Examples include line, bar, pie.\n\nExisting graph types are found in `js/types/`.\n\n### Plugins\n\nPlugins extend the core of flotr with new functionality.  They can add interactions, new decorations, etc.  Examples \ninclude titles, labels and selection.\n\nThe plugins included are found in `js/plugins/`.\n\nDevelopment\n-----------\n\nThis project uses [smoosh](https://github.com/fat/smoosh) to build and [jasmine](http://pivotal.github.com/jasmine/) \nwith [js-imagediff](https://github.com/HumbleSoftware/js-imagediff) to test.  Tests may be executed by \n[jasmine-headless-webkit](http://johnbintz.github.com/jasmine-headless-webkit/) with \n`cd spec; jasmine-headless-webkit -j jasmine.yml -c` or by a browser by navigating to \n`flotr2/spec/SpecRunner.html`.\n\nShoutouts\n---------\n\nThanks to Bas Wenneker, Fabien Ménager and others for all the work on the original Flotr.\nThanks to Jochen Berger and Jordan Santell for their contributions to Flotr2.\n\n","maintainers":[{"name":"lu4","email":"denis.yaremov@gmail.com"}],"time":{"modified":"2022-06-18T02:16:58.384Z","created":"2016-12-17T20:40:37.057Z","0.1.0":"2016-12-17T20:40:37.057Z"},"homepage":"http://www.humblesoftware.com/flotr2","keywords":["flotr2"],"repository":{"type":"git","url":"git+https://github.com/HumbleSoftware/Flotr2.git"},"author":{"name":"Carl Sutherland","email":"carl@humblesoftware.com","url":"https://github.com/cesutherland"},"bugs":{"url":"https://github.com/HumbleSoftware/Flotr2/issues"},"license":"MIT","readmeFilename":"README.md"}