├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── dev └── notes.txt ├── examples ├── dev.html ├── editor.css ├── examples.css ├── images │ ├── butterfly.jpg │ ├── checkmark.png │ └── xmark.png ├── index.html ├── js │ ├── Editor.js │ ├── Example.js │ ├── ExampleList.js │ ├── Examples.js │ ├── Profile.js │ ├── examples │ │ ├── advanced-markers.js │ │ ├── advanced-titles.js │ │ ├── basic-axis.js │ │ ├── basic-bars-custom-colors.js │ │ ├── basic-bars-stacked.js │ │ ├── basic-bars.js │ │ ├── basic-bubble.js │ │ ├── basic-candle-barchart.js │ │ ├── basic-candle.js │ │ ├── basic-legend.js │ │ ├── basic-pie.js │ │ ├── basic-radar.js │ │ ├── basic-stacked.js │ │ ├── basic-stepped.js │ │ ├── basic-time.js │ │ ├── basic-timeline.js │ │ ├── basic.js │ │ ├── click-example.js │ │ ├── color-gradients.js │ │ ├── download-data.js │ │ ├── download-image.js │ │ ├── mouse-drag.js │ │ ├── mouse-tracking.js │ │ ├── mouse-zoom.js │ │ ├── negative-values.js │ │ └── profile-bars.js │ ├── includes.dev.js │ └── includes.min.js ├── lib │ ├── beautify.js │ ├── codemirror │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo │ │ │ ├── activeline.html │ │ │ ├── changemode.html │ │ │ ├── complete.html │ │ │ ├── emacs.html │ │ │ ├── folding.html │ │ │ ├── formatting.html │ │ │ ├── fullscreen.html │ │ │ ├── marker.html │ │ │ ├── mustache.html │ │ │ ├── preview.html │ │ │ ├── resize.html │ │ │ ├── runmode.html │ │ │ ├── search.html │ │ │ ├── theme.html │ │ │ ├── vim.html │ │ │ └── visibletabs.html │ │ ├── doc │ │ │ ├── baboon.png │ │ │ ├── baboon_vector.svg │ │ │ ├── compress.html │ │ │ ├── docs.css │ │ │ ├── internals.html │ │ │ ├── manual.html │ │ │ ├── oldrelease.html │ │ │ ├── reporting.html │ │ │ └── upgrade_v2.2.html │ │ ├── index.html │ │ ├── keymap │ │ │ ├── emacs.js │ │ │ └── vim.js │ │ ├── lib │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ └── util │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog.js │ │ │ │ ├── foldcode.js │ │ │ │ ├── formatting.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── overlay.js │ │ │ │ ├── runmode.js │ │ │ │ ├── search.js │ │ │ │ ├── searchcursor.js │ │ │ │ ├── simple-hint.css │ │ │ │ └── simple-hint.js │ │ ├── mode │ │ │ ├── clike │ │ │ │ ├── clike.js │ │ │ │ └── index.html │ │ │ ├── clojure │ │ │ │ ├── clojure.js │ │ │ │ └── index.html │ │ │ ├── coffeescript │ │ │ │ ├── LICENSE │ │ │ │ ├── coffeescript.js │ │ │ │ └── index.html │ │ │ ├── css │ │ │ │ ├── css.js │ │ │ │ └── index.html │ │ │ ├── diff │ │ │ │ ├── diff.css │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── gfm │ │ │ │ ├── gfm.js │ │ │ │ └── index.html │ │ │ ├── groovy │ │ │ │ ├── groovy.js │ │ │ │ └── index.html │ │ │ ├── haskell │ │ │ │ ├── haskell.js │ │ │ │ └── index.html │ │ │ ├── htmlembedded │ │ │ │ ├── htmlembedded.js │ │ │ │ └── index.html │ │ │ ├── htmlmixed │ │ │ │ ├── htmlmixed.js │ │ │ │ └── index.html │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ └── javascript.js │ │ │ ├── jinja2 │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── lua │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ │ ├── index.html │ │ │ │ └── markdown.js │ │ │ ├── ntriples │ │ │ │ ├── index.html │ │ │ │ └── ntriples.js │ │ │ ├── pascal │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── pascal.js │ │ │ ├── perl │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── perl.js │ │ │ ├── php │ │ │ │ ├── index.html │ │ │ │ └── php.js │ │ │ ├── plsql │ │ │ │ ├── index.html │ │ │ │ └── plsql.js │ │ │ ├── python │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── index.html │ │ │ │ └── python.js │ │ │ ├── r │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm │ │ │ │ ├── changes │ │ │ │ │ ├── changes.js │ │ │ │ │ └── index.html │ │ │ │ └── spec │ │ │ │ │ ├── index.html │ │ │ │ │ ├── spec.css │ │ │ │ │ └── spec.js │ │ │ ├── rst │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ ├── index.html │ │ │ │ └── rust.js │ │ │ ├── scheme │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── smalltalk │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── sparql │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── stex │ │ │ │ ├── index.html │ │ │ │ └── stex.js │ │ │ ├── tiddlywiki │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── velocity │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── xml │ │ │ │ ├── index.html │ │ │ │ └── xml.js │ │ │ ├── xmlpure │ │ │ │ ├── index.html │ │ │ │ └── xmlpure.js │ │ │ └── yaml │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ ├── test │ │ │ ├── index.html │ │ │ └── test.js │ │ └── theme │ │ │ ├── cobalt.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── night.css │ │ │ └── rubyblue.css │ ├── jquery-1.7.1.min.js │ ├── jquery.ba-hashchange.min.js │ └── randomseed.js ├── old_examples │ ├── ajax-financial-data.php │ ├── basic-watermark.html │ ├── blank.cur │ ├── examples.js │ ├── extending-flotr.html │ ├── includes.js │ ├── index.html │ ├── json-data.html │ ├── json-real-data.html │ ├── json.txt │ ├── logarithmic-scale.html │ ├── mouse-zoom-preview.html │ └── style.css ├── profile.html └── standalone.html ├── flotr2.amd.js ├── flotr2.examples.min.js ├── flotr2.examples.types.js ├── flotr2.ie.min.js ├── flotr2.js ├── flotr2.min.js ├── flotr2.nolibs.js ├── js ├── Axis.js ├── Color.js ├── DOM.js ├── Date.js ├── DefaultOptions.js ├── EventAdapter.js ├── Flotr.js ├── Graph.js ├── Series.js ├── Text.js ├── amd │ ├── post.js │ └── pre.js ├── plugins │ ├── crosshair.js │ ├── download.js │ ├── grid.js │ ├── handles.js │ ├── hit.js │ ├── labels.js │ ├── legend.js │ ├── selection.js │ ├── spreadsheet.js │ └── titles.js └── types │ ├── bars.js │ ├── bubbles.js │ ├── candles.js │ ├── gantt.js │ ├── lines.js │ ├── markers.js │ ├── pie.js │ ├── points.js │ ├── radar.js │ └── timeline.js ├── lib ├── base64.js ├── bean-min.js ├── bean.js ├── canvas2image.js ├── canvastext.js ├── excanvas.js ├── prototype.js ├── underscore-min.js ├── underscore.js └── yepnope.js ├── make ├── basic.json ├── build.json ├── examples.json ├── flotr2.json ├── ie.json └── lib.json ├── package.json ├── playwright.config.js ├── scripts ├── changelog.sh └── release.sh └── tests ├── chart-types.spec.js ├── chart-types.spec.js-snapshots ├── line-chart-basic-chromium-linux.png ├── line-chart-filled-chromium-linux.png ├── line-chart-no-shadow-chromium-linux.png ├── line-chart-null-values-chromium-linux.png └── line-chart-two-lines-chromium-linux.png ├── color.spec.js ├── examples.spec.js ├── examples.spec.js-snapshots ├── basic-example-rendered-chromium-linux.png └── examples-page-loads-chromium-linux.png ├── fontcolor.spec.js ├── fontcolor.spec.js-snapshots ├── fontcolor-custom-red-chromium-linux.png ├── fontcolor-default-chromium-linux.png ├── fontcolor-html-mode-chromium-linux.png └── fontcolor-vs-gridcolor-chromium-linux.png ├── graph-options.spec.js ├── images ├── checkmark.png └── xmark.png ├── test-page.html ├── visual-regression.spec.html ├── visual-regression.spec.js └── visual-regression.spec.js-snapshots ├── advanced-markers-example-chromium-linux.png ├── advanced-titles-example-chromium-linux.png ├── basic-axis-example-chromium-linux.png ├── basic-bars-custom-colors-example-chromium-linux.png ├── basic-bars-example-chromium-linux.png ├── basic-bars-horizontal-example-chromium-linux.png ├── basic-bars-stacked-example-chromium-linux.png ├── basic-bubble-example-chromium-linux.png ├── basic-candle-barchart-example-chromium-linux.png ├── basic-candle-example-chromium-linux.png ├── basic-example-chromium-linux.png ├── basic-legend-example-chromium-linux.png ├── basic-pie-example-chromium-linux.png ├── basic-radar-example-chromium-linux.png ├── basic-stacked-example-chromium-linux.png ├── basic-stacked-horizontal-example-chromium-linux.png ├── basic-stepped-example-chromium-linux.png ├── basic-time-example-chromium-linux.png ├── basic-timeline-example-chromium-linux.png ├── click-example-example-chromium-linux.png ├── color-gradients-example-chromium-linux.png ├── download-data-example-chromium-linux.png ├── download-image-example-chromium-linux.png ├── mouse-drag-example-chromium-linux.png ├── mouse-tracking-example-chromium-linux.png ├── mouse-zoom-example-chromium-linux.png ├── negative-values-example-chromium-linux.png └── profile-bars-example-chromium-linux.png /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/README.md -------------------------------------------------------------------------------- /dev/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/dev/notes.txt -------------------------------------------------------------------------------- /examples/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/dev.html -------------------------------------------------------------------------------- /examples/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/editor.css -------------------------------------------------------------------------------- /examples/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/examples.css -------------------------------------------------------------------------------- /examples/images/butterfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/images/butterfly.jpg -------------------------------------------------------------------------------- /examples/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/images/checkmark.png -------------------------------------------------------------------------------- /examples/images/xmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/images/xmark.png -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/js/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/Editor.js -------------------------------------------------------------------------------- /examples/js/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/Example.js -------------------------------------------------------------------------------- /examples/js/ExampleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/ExampleList.js -------------------------------------------------------------------------------- /examples/js/Examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/Examples.js -------------------------------------------------------------------------------- /examples/js/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/Profile.js -------------------------------------------------------------------------------- /examples/js/examples/advanced-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/advanced-markers.js -------------------------------------------------------------------------------- /examples/js/examples/advanced-titles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/advanced-titles.js -------------------------------------------------------------------------------- /examples/js/examples/basic-axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-axis.js -------------------------------------------------------------------------------- /examples/js/examples/basic-bars-custom-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-bars-custom-colors.js -------------------------------------------------------------------------------- /examples/js/examples/basic-bars-stacked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-bars-stacked.js -------------------------------------------------------------------------------- /examples/js/examples/basic-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-bars.js -------------------------------------------------------------------------------- /examples/js/examples/basic-bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-bubble.js -------------------------------------------------------------------------------- /examples/js/examples/basic-candle-barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-candle-barchart.js -------------------------------------------------------------------------------- /examples/js/examples/basic-candle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-candle.js -------------------------------------------------------------------------------- /examples/js/examples/basic-legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-legend.js -------------------------------------------------------------------------------- /examples/js/examples/basic-pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-pie.js -------------------------------------------------------------------------------- /examples/js/examples/basic-radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-radar.js -------------------------------------------------------------------------------- /examples/js/examples/basic-stacked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-stacked.js -------------------------------------------------------------------------------- /examples/js/examples/basic-stepped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-stepped.js -------------------------------------------------------------------------------- /examples/js/examples/basic-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-time.js -------------------------------------------------------------------------------- /examples/js/examples/basic-timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic-timeline.js -------------------------------------------------------------------------------- /examples/js/examples/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/basic.js -------------------------------------------------------------------------------- /examples/js/examples/click-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/click-example.js -------------------------------------------------------------------------------- /examples/js/examples/color-gradients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/color-gradients.js -------------------------------------------------------------------------------- /examples/js/examples/download-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/download-data.js -------------------------------------------------------------------------------- /examples/js/examples/download-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/download-image.js -------------------------------------------------------------------------------- /examples/js/examples/mouse-drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/mouse-drag.js -------------------------------------------------------------------------------- /examples/js/examples/mouse-tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/mouse-tracking.js -------------------------------------------------------------------------------- /examples/js/examples/mouse-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/mouse-zoom.js -------------------------------------------------------------------------------- /examples/js/examples/negative-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/negative-values.js -------------------------------------------------------------------------------- /examples/js/examples/profile-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/examples/profile-bars.js -------------------------------------------------------------------------------- /examples/js/includes.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/includes.dev.js -------------------------------------------------------------------------------- /examples/js/includes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/js/includes.min.js -------------------------------------------------------------------------------- /examples/lib/beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/beautify.js -------------------------------------------------------------------------------- /examples/lib/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/LICENSE -------------------------------------------------------------------------------- /examples/lib/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/README.md -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/activeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/activeline.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/changemode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/changemode.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/complete.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/emacs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/emacs.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/folding.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/formatting.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/fullscreen.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/marker.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/mustache.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/preview.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/resize.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/runmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/runmode.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/search.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/theme.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/vim.html -------------------------------------------------------------------------------- /examples/lib/codemirror/demo/visibletabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/demo/visibletabs.html -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/baboon.png -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/baboon_vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/baboon_vector.svg -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/compress.html -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/docs.css -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/internals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/internals.html -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/manual.html -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/oldrelease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/oldrelease.html -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/reporting.html -------------------------------------------------------------------------------- /examples/lib/codemirror/doc/upgrade_v2.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/doc/upgrade_v2.2.html -------------------------------------------------------------------------------- /examples/lib/codemirror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/keymap/emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/keymap/emacs.js -------------------------------------------------------------------------------- /examples/lib/codemirror/keymap/vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/keymap/vim.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/codemirror.css -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/dialog.css -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/dialog.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/foldcode.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/formatting.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/javascript-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/javascript-hint.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/overlay.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/runmode.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/search.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/searchcursor.js -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/simple-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/simple-hint.css -------------------------------------------------------------------------------- /examples/lib/codemirror/lib/util/simple-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/lib/util/simple-hint.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/clike/clike.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/clike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/clike/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/clojure/clojure.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/clojure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/clojure/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/coffeescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/coffeescript/LICENSE -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/coffeescript/coffeescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/coffeescript/coffeescript.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/coffeescript/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/css/css.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/css/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/diff/diff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/diff/diff.css -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/diff/diff.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/diff/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/gfm/gfm.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/gfm/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/groovy/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/groovy/groovy.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/groovy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/groovy/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/haskell/haskell.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/haskell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/haskell/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/htmlembedded/htmlembedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/htmlembedded/htmlembedded.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/htmlembedded/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/htmlembedded/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/htmlmixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/htmlmixed/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/javascript/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/jinja2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/jinja2/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/jinja2/jinja2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/jinja2/jinja2.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/lua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/lua/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/lua/lua.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/markdown/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/markdown/markdown.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/ntriples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/ntriples/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/ntriples/ntriples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/ntriples/ntriples.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/pascal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/pascal/LICENSE -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/pascal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/pascal/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/pascal/pascal.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/perl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/perl/LICENSE -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/perl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/perl/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/perl/perl.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/php/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/php/php.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/plsql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/plsql/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/plsql/plsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/plsql/plsql.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/python/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/python/LICENSE.txt -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/python/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/python/python.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/r/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/r/LICENSE -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/r/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rpm/changes/changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rpm/changes/changes.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rpm/changes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rpm/changes/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rpm/spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rpm/spec/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rpm/spec/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rpm/spec/spec.css -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rpm/spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rpm/spec/spec.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rst/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rst/rst.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/ruby/LICENSE -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/ruby/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/ruby/ruby.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rust/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rust/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/rust/rust.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/scheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/scheme/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/scheme/scheme.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/smalltalk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/smalltalk/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/smalltalk/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/smalltalk/smalltalk.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/sparql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/sparql/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/sparql/sparql.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/stex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/stex/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/stex/stex.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/tiddlywiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/tiddlywiki/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/tiddlywiki/tiddlywiki.css -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/tiddlywiki/tiddlywiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/tiddlywiki/tiddlywiki.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/velocity/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/velocity/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/velocity/velocity.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/xml/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/xmlpure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/xmlpure/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/xmlpure/xmlpure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/xmlpure/xmlpure.js -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/yaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/yaml/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/mode/yaml/yaml.js -------------------------------------------------------------------------------- /examples/lib/codemirror/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/test/index.html -------------------------------------------------------------------------------- /examples/lib/codemirror/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/test/test.js -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/neat.css -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/night.css -------------------------------------------------------------------------------- /examples/lib/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /examples/lib/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /examples/lib/jquery.ba-hashchange.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/jquery.ba-hashchange.min.js -------------------------------------------------------------------------------- /examples/lib/randomseed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/lib/randomseed.js -------------------------------------------------------------------------------- /examples/old_examples/ajax-financial-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/ajax-financial-data.php -------------------------------------------------------------------------------- /examples/old_examples/basic-watermark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/basic-watermark.html -------------------------------------------------------------------------------- /examples/old_examples/blank.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/blank.cur -------------------------------------------------------------------------------- /examples/old_examples/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/examples.js -------------------------------------------------------------------------------- /examples/old_examples/extending-flotr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/extending-flotr.html -------------------------------------------------------------------------------- /examples/old_examples/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/includes.js -------------------------------------------------------------------------------- /examples/old_examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/index.html -------------------------------------------------------------------------------- /examples/old_examples/json-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/json-data.html -------------------------------------------------------------------------------- /examples/old_examples/json-real-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/json-real-data.html -------------------------------------------------------------------------------- /examples/old_examples/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/json.txt -------------------------------------------------------------------------------- /examples/old_examples/logarithmic-scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/logarithmic-scale.html -------------------------------------------------------------------------------- /examples/old_examples/mouse-zoom-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/mouse-zoom-preview.html -------------------------------------------------------------------------------- /examples/old_examples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/old_examples/style.css -------------------------------------------------------------------------------- /examples/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/profile.html -------------------------------------------------------------------------------- /examples/standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/examples/standalone.html -------------------------------------------------------------------------------- /flotr2.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.amd.js -------------------------------------------------------------------------------- /flotr2.examples.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.examples.min.js -------------------------------------------------------------------------------- /flotr2.examples.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.examples.types.js -------------------------------------------------------------------------------- /flotr2.ie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.ie.min.js -------------------------------------------------------------------------------- /flotr2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.js -------------------------------------------------------------------------------- /flotr2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.min.js -------------------------------------------------------------------------------- /flotr2.nolibs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/flotr2.nolibs.js -------------------------------------------------------------------------------- /js/Axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Axis.js -------------------------------------------------------------------------------- /js/Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Color.js -------------------------------------------------------------------------------- /js/DOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/DOM.js -------------------------------------------------------------------------------- /js/Date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Date.js -------------------------------------------------------------------------------- /js/DefaultOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/DefaultOptions.js -------------------------------------------------------------------------------- /js/EventAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/EventAdapter.js -------------------------------------------------------------------------------- /js/Flotr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Flotr.js -------------------------------------------------------------------------------- /js/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Graph.js -------------------------------------------------------------------------------- /js/Series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Series.js -------------------------------------------------------------------------------- /js/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/Text.js -------------------------------------------------------------------------------- /js/amd/post.js: -------------------------------------------------------------------------------- 1 | 2 | return Flotr; 3 | 4 | })); -------------------------------------------------------------------------------- /js/amd/pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/amd/pre.js -------------------------------------------------------------------------------- /js/plugins/crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/crosshair.js -------------------------------------------------------------------------------- /js/plugins/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/download.js -------------------------------------------------------------------------------- /js/plugins/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/grid.js -------------------------------------------------------------------------------- /js/plugins/handles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/handles.js -------------------------------------------------------------------------------- /js/plugins/hit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/hit.js -------------------------------------------------------------------------------- /js/plugins/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/labels.js -------------------------------------------------------------------------------- /js/plugins/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/legend.js -------------------------------------------------------------------------------- /js/plugins/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/selection.js -------------------------------------------------------------------------------- /js/plugins/spreadsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/spreadsheet.js -------------------------------------------------------------------------------- /js/plugins/titles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/plugins/titles.js -------------------------------------------------------------------------------- /js/types/bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/bars.js -------------------------------------------------------------------------------- /js/types/bubbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/bubbles.js -------------------------------------------------------------------------------- /js/types/candles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/candles.js -------------------------------------------------------------------------------- /js/types/gantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/gantt.js -------------------------------------------------------------------------------- /js/types/lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/lines.js -------------------------------------------------------------------------------- /js/types/markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/markers.js -------------------------------------------------------------------------------- /js/types/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/pie.js -------------------------------------------------------------------------------- /js/types/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/points.js -------------------------------------------------------------------------------- /js/types/radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/radar.js -------------------------------------------------------------------------------- /js/types/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/js/types/timeline.js -------------------------------------------------------------------------------- /lib/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/base64.js -------------------------------------------------------------------------------- /lib/bean-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/bean-min.js -------------------------------------------------------------------------------- /lib/bean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/bean.js -------------------------------------------------------------------------------- /lib/canvas2image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/canvas2image.js -------------------------------------------------------------------------------- /lib/canvastext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/canvastext.js -------------------------------------------------------------------------------- /lib/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/excanvas.js -------------------------------------------------------------------------------- /lib/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/prototype.js -------------------------------------------------------------------------------- /lib/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/underscore-min.js -------------------------------------------------------------------------------- /lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/underscore.js -------------------------------------------------------------------------------- /lib/yepnope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/lib/yepnope.js -------------------------------------------------------------------------------- /make/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/make/basic.json -------------------------------------------------------------------------------- /make/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/make/build.json -------------------------------------------------------------------------------- /make/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/make/examples.json -------------------------------------------------------------------------------- /make/flotr2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/make/flotr2.json -------------------------------------------------------------------------------- /make/ie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/make/ie.json -------------------------------------------------------------------------------- /make/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/make/lib.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/playwright.config.js -------------------------------------------------------------------------------- /scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/scripts/changelog.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /tests/chart-types.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/chart-types.spec.js -------------------------------------------------------------------------------- /tests/chart-types.spec.js-snapshots/line-chart-basic-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/chart-types.spec.js-snapshots/line-chart-basic-chromium-linux.png -------------------------------------------------------------------------------- /tests/chart-types.spec.js-snapshots/line-chart-filled-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/chart-types.spec.js-snapshots/line-chart-filled-chromium-linux.png -------------------------------------------------------------------------------- /tests/chart-types.spec.js-snapshots/line-chart-no-shadow-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/chart-types.spec.js-snapshots/line-chart-no-shadow-chromium-linux.png -------------------------------------------------------------------------------- /tests/chart-types.spec.js-snapshots/line-chart-null-values-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/chart-types.spec.js-snapshots/line-chart-null-values-chromium-linux.png -------------------------------------------------------------------------------- /tests/chart-types.spec.js-snapshots/line-chart-two-lines-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/chart-types.spec.js-snapshots/line-chart-two-lines-chromium-linux.png -------------------------------------------------------------------------------- /tests/color.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/color.spec.js -------------------------------------------------------------------------------- /tests/examples.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/examples.spec.js -------------------------------------------------------------------------------- /tests/examples.spec.js-snapshots/basic-example-rendered-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/examples.spec.js-snapshots/basic-example-rendered-chromium-linux.png -------------------------------------------------------------------------------- /tests/examples.spec.js-snapshots/examples-page-loads-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/examples.spec.js-snapshots/examples-page-loads-chromium-linux.png -------------------------------------------------------------------------------- /tests/fontcolor.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/fontcolor.spec.js -------------------------------------------------------------------------------- /tests/fontcolor.spec.js-snapshots/fontcolor-custom-red-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/fontcolor.spec.js-snapshots/fontcolor-custom-red-chromium-linux.png -------------------------------------------------------------------------------- /tests/fontcolor.spec.js-snapshots/fontcolor-default-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/fontcolor.spec.js-snapshots/fontcolor-default-chromium-linux.png -------------------------------------------------------------------------------- /tests/fontcolor.spec.js-snapshots/fontcolor-html-mode-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/fontcolor.spec.js-snapshots/fontcolor-html-mode-chromium-linux.png -------------------------------------------------------------------------------- /tests/fontcolor.spec.js-snapshots/fontcolor-vs-gridcolor-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/fontcolor.spec.js-snapshots/fontcolor-vs-gridcolor-chromium-linux.png -------------------------------------------------------------------------------- /tests/graph-options.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/graph-options.spec.js -------------------------------------------------------------------------------- /tests/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/images/checkmark.png -------------------------------------------------------------------------------- /tests/images/xmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/images/xmark.png -------------------------------------------------------------------------------- /tests/test-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/test-page.html -------------------------------------------------------------------------------- /tests/visual-regression.spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.html -------------------------------------------------------------------------------- /tests/visual-regression.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/advanced-markers-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/advanced-markers-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/advanced-titles-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/advanced-titles-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-axis-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-axis-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-bars-custom-colors-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-bars-custom-colors-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-bars-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-bars-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-bars-horizontal-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-bars-horizontal-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-bars-stacked-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-bars-stacked-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-bubble-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-bubble-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-candle-barchart-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-candle-barchart-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-candle-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-candle-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-legend-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-legend-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-pie-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-pie-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-radar-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-radar-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-stacked-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-stacked-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-stacked-horizontal-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-stacked-horizontal-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-stepped-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-stepped-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-time-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-time-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/basic-timeline-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/basic-timeline-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/click-example-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/click-example-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/color-gradients-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/color-gradients-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/download-data-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/download-data-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/download-image-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/download-image-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/mouse-drag-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/mouse-drag-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/mouse-tracking-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/mouse-tracking-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/mouse-zoom-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/mouse-zoom-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/negative-values-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/negative-values-example-chromium-linux.png -------------------------------------------------------------------------------- /tests/visual-regression.spec.js-snapshots/profile-bars-example-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/Flotr2/HEAD/tests/visual-regression.spec.js-snapshots/profile-bars-example-chromium-linux.png --------------------------------------------------------------------------------