{"id":13506490,"url":"https://github.com/HumbleSoftware/Flotr2","last_synced_at":"2025-03-30T03:30:48.081Z","repository":{"id":57238664,"uuid":"2143982","full_name":"HumbleSoftware/Flotr2","owner":"HumbleSoftware","description":"Graphs and Charts for Canvas in JavaScript.","archived":false,"fork":false,"pushed_at":"2018-06-15T04:11:49.000Z","size":4651,"stargazers_count":2441,"open_issues_count":148,"forks_count":526,"subscribers_count":119,"default_branch":"master","last_synced_at":"2025-03-20T05:07:49.342Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.humblesoftware.com/flotr2/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HumbleSoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-08-02T17:40:17.000Z","updated_at":"2025-03-16T22:28:51.000Z","dependencies_parsed_at":"2022-08-26T15:11:57.021Z","dependency_job_id":null,"html_url":"https://github.com/HumbleSoftware/Flotr2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HumbleSoftware%2FFlotr2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HumbleSoftware%2FFlotr2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HumbleSoftware%2FFlotr2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HumbleSoftware%2FFlotr2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HumbleSoftware","download_url":"https://codeload.github.com/HumbleSoftware/Flotr2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245791964,"owners_count":20672671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T01:00:52.365Z","updated_at":"2025-03-30T03:30:48.023Z","avatar_url":"https://github.com/HumbleSoftware.png","language":"JavaScript","funding_links":[],"categories":["Uncategorized","JavaScript"],"sub_categories":["Uncategorized"],"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 \u003c 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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHumbleSoftware%2FFlotr2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHumbleSoftware%2FFlotr2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHumbleSoftware%2FFlotr2/lists"}