├── .gitattributes ├── .github └── workflows │ ├── publish-to-pypi.yml │ └── testing.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _misc │ ├── compile.py │ └── examples │ │ ├── chart-1.py │ │ ├── chart-10.py │ │ ├── chart-11.py │ │ ├── chart-12.py │ │ ├── chart-13.py │ │ ├── chart-14.py │ │ ├── chart-15.py │ │ ├── chart-16.py │ │ ├── chart-17.py │ │ ├── chart-18.py │ │ ├── chart-19.py │ │ ├── chart-2.py │ │ ├── chart-20.py │ │ ├── chart-21.py │ │ ├── chart-22.py │ │ ├── chart-23.py │ │ ├── chart-24.py │ │ ├── chart-25.py │ │ ├── chart-26.py │ │ ├── chart-27.py │ │ ├── chart-28.py │ │ ├── chart-29.py │ │ ├── chart-3.py │ │ ├── chart-30.py │ │ ├── chart-31.py │ │ ├── chart-32.py │ │ ├── chart-33.py │ │ ├── chart-34.py │ │ ├── chart-35.py │ │ ├── chart-36.py │ │ ├── chart-37.py │ │ ├── chart-38.py │ │ ├── chart-39.py │ │ ├── chart-4.py │ │ ├── chart-40.py │ │ ├── chart-41.py │ │ ├── chart-42.py │ │ ├── chart-43.py │ │ ├── chart-44.py │ │ ├── chart-45.py │ │ ├── chart-46.py │ │ ├── chart-47.py │ │ ├── chart-48.py │ │ ├── chart-49.py │ │ ├── chart-5.py │ │ ├── chart-50.py │ │ ├── chart-51.py │ │ ├── chart-52.py │ │ ├── chart-53.py │ │ ├── chart-54.py │ │ ├── chart-55.py │ │ ├── chart-56.py │ │ ├── chart-57.py │ │ ├── chart-58.py │ │ ├── chart-59.py │ │ ├── chart-6.py │ │ ├── chart-60.py │ │ ├── chart-61.py │ │ ├── chart-62.py │ │ ├── chart-63.py │ │ ├── chart-64.py │ │ ├── chart-65.py │ │ ├── chart-66.py │ │ ├── chart-7.py │ │ ├── chart-8.py │ │ └── chart-9.py ├── conf.py ├── contents │ ├── API │ │ ├── Chart.rst │ │ ├── Grid.rst │ │ ├── Plot.rst │ │ ├── index.rst │ │ └── utilities │ │ │ ├── heatmap.rst │ │ │ ├── index.rst │ │ │ ├── new.rst │ │ │ ├── plot.rst │ │ │ └── render.rst │ ├── about.rst │ ├── colormaps.rst │ ├── dimensions.rst │ ├── examples │ │ ├── example-1.rst │ │ ├── example-10.rst │ │ ├── example-11.rst │ │ ├── example-12.rst │ │ ├── example-13.rst │ │ ├── example-14.rst │ │ ├── example-15.rst │ │ ├── example-16.rst │ │ ├── example-17.rst │ │ ├── example-18.rst │ │ ├── example-19.rst │ │ ├── example-2.rst │ │ ├── example-20.rst │ │ ├── example-21.rst │ │ ├── example-22.rst │ │ ├── example-23.rst │ │ ├── example-24.rst │ │ ├── example-27.rst │ │ ├── example-28.rst │ │ ├── example-3.rst │ │ ├── example-30.rst │ │ ├── example-31.rst │ │ ├── example-33.rst │ │ ├── example-34.rst │ │ ├── example-35.rst │ │ ├── example-36.rst │ │ ├── example-37.rst │ │ ├── example-38.rst │ │ ├── example-39.rst │ │ ├── example-4.rst │ │ ├── example-40.rst │ │ ├── example-41.rst │ │ ├── example-5.rst │ │ ├── example-6.rst │ │ ├── example-7.rst │ │ └── index.rst │ ├── introduction.rst │ ├── plotting-with-pandas.rst │ ├── rendering.rst │ ├── streamlit.rst │ └── themes.rst ├── fragments │ └── badges.rst ├── index.rst ├── make.bat ├── requirements.txt └── static │ ├── charts │ ├── chart-1.json │ ├── chart-10.json │ ├── chart-11.json │ ├── chart-12.json │ ├── chart-13.json │ ├── chart-14.json │ ├── chart-15.json │ ├── chart-16.json │ ├── chart-17.json │ ├── chart-18.json │ ├── chart-19.json │ ├── chart-2.json │ ├── chart-20.json │ ├── chart-21.json │ ├── chart-22.json │ ├── chart-23.json │ ├── chart-24.json │ ├── chart-25.json │ ├── chart-26.json │ ├── chart-27.json │ ├── chart-28.json │ ├── chart-29.json │ ├── chart-3.json │ ├── chart-30.json │ ├── chart-31.json │ ├── chart-32.json │ ├── chart-33.json │ ├── chart-34.json │ ├── chart-35.json │ ├── chart-36.json │ ├── chart-37.json │ ├── chart-38.json │ ├── chart-39.json │ ├── chart-4.json │ ├── chart-40.json │ ├── chart-41.json │ ├── chart-42.json │ ├── chart-43.json │ ├── chart-44.json │ ├── chart-45.json │ ├── chart-46.json │ ├── chart-47.json │ ├── chart-48.json │ ├── chart-49.json │ ├── chart-5.json │ ├── chart-50.json │ ├── chart-51.json │ ├── chart-52.json │ ├── chart-53.json │ ├── chart-54.json │ ├── chart-55.json │ ├── chart-56.json │ ├── chart-57.json │ ├── chart-58.json │ ├── chart-59.json │ ├── chart-6.json │ ├── chart-60.json │ ├── chart-61.json │ ├── chart-62.json │ ├── chart-63.json │ ├── chart-64.json │ ├── chart-65.json │ ├── chart-66.json │ ├── chart-7.json │ ├── chart-8.json │ └── chart-9.json │ ├── colormaps │ ├── accent.png │ ├── afmhot.png │ ├── autumn.png │ ├── binary.png │ ├── blues.png │ ├── bone.png │ ├── brbg.png │ ├── brg.png │ ├── bugn.png │ ├── bupu.png │ ├── bwr.png │ ├── cividis.png │ ├── cmrmap.png │ ├── cool.png │ ├── coolwarm.png │ ├── copper.png │ ├── cubehelix.png │ ├── dark2.png │ ├── flag.png │ ├── gist_earth.png │ ├── gist_gray.png │ ├── gist_heat.png │ ├── gist_ncar.png │ ├── gist_rainbow.png │ ├── gist_stern.png │ ├── gist_yarg.png │ ├── gnbu.png │ ├── gnuplot.png │ ├── gnuplot2.png │ ├── gray.png │ ├── greens.png │ ├── greys.png │ ├── hot.png │ ├── hsv.png │ ├── inferno.png │ ├── jet.png │ ├── magma.png │ ├── nipy_spectral.png │ ├── ocean.png │ ├── oranges.png │ ├── orrd.png │ ├── paired.png │ ├── pastel1.png │ ├── pastel2.png │ ├── pink.png │ ├── piyg.png │ ├── plasma.png │ ├── prgn.png │ ├── prism.png │ ├── pubu.png │ ├── pubugn.png │ ├── puor.png │ ├── purd.png │ ├── purples.png │ ├── rainbow.png │ ├── rdbu.png │ ├── rdgy.png │ ├── rdpu.png │ ├── rdylbu.png │ ├── rdylgn.png │ ├── reds.png │ ├── seismic.png │ ├── set1.png │ ├── set2.png │ ├── set3.png │ ├── spectral.png │ ├── spring.png │ ├── summer.png │ ├── tab10.png │ ├── tab20.png │ ├── tab20b.png │ ├── tab20c.png │ ├── terrain.png │ ├── turbo.png │ ├── twilight.png │ ├── twilight_shifted.png │ ├── viridis.png │ ├── winter.png │ ├── wistia.png │ ├── ylgn.png │ ├── ylgnbu.png │ ├── ylorbr.png │ └── ylorrd.png │ ├── demo (1).svg │ ├── index-eefeb6a3.js │ ├── logo.svg │ └── style.css ├── easychart ├── __init__.py ├── colormaps │ ├── __init__.py │ ├── accent.json │ ├── afmhot.json │ ├── autumn.json │ ├── binary.json │ ├── blues.json │ ├── bone.json │ ├── brbg.json │ ├── brg.json │ ├── bugn.json │ ├── bupu.json │ ├── bwr.json │ ├── cividis.json │ ├── cmrmap.json │ ├── cool.json │ ├── coolwarm.json │ ├── copper.json │ ├── cubehelix.json │ ├── dark2.json │ ├── flag.json │ ├── gist_earth.json │ ├── gist_gray.json │ ├── gist_heat.json │ ├── gist_ncar.json │ ├── gist_rainbow.json │ ├── gist_stern.json │ ├── gist_yarg.json │ ├── gnbu.json │ ├── gnuplot.json │ ├── gnuplot2.json │ ├── gray.json │ ├── greens.json │ ├── greys.json │ ├── hot.json │ ├── hsv.json │ ├── inferno.json │ ├── jet.json │ ├── magma.json │ ├── nipy_spectral.json │ ├── ocean.json │ ├── oranges.json │ ├── orrd.json │ ├── paired.json │ ├── pastel1.json │ ├── pastel2.json │ ├── pink.json │ ├── piyg.json │ ├── plasma.json │ ├── prgn.json │ ├── prism.json │ ├── pubu.json │ ├── pubugn.json │ ├── puor.json │ ├── purd.json │ ├── purples.json │ ├── rainbow.json │ ├── rdbu.json │ ├── rdgy.json │ ├── rdpu.json │ ├── rdylbu.json │ ├── rdylgn.json │ ├── reds.json │ ├── seismic.json │ ├── set1.json │ ├── set2.json │ ├── set3.json │ ├── spectral.json │ ├── spring.json │ ├── summer.json │ ├── tab10.json │ ├── tab20.json │ ├── tab20b.json │ ├── tab20c.json │ ├── terrain.json │ ├── turbo.json │ ├── twilight.json │ ├── twilight_shifted.json │ ├── viridis.json │ ├── winter.json │ ├── wistia.json │ ├── ylgn.json │ ├── ylgnbu.json │ ├── ylorbr.json │ └── ylorrd.json ├── config.py ├── datasets │ ├── S&P500.csv │ ├── __init__.py │ ├── diamonds.csv │ ├── electricity.csv │ ├── olympics.csv │ ├── populations.csv │ ├── stocks.csv │ └── unemployment.csv ├── encoders.py ├── extensions │ ├── __init__.py │ └── racechart │ │ ├── __init__.py │ │ └── template.jinja ├── internals.py ├── ipynb.py ├── models │ ├── __init__.py │ ├── chart.py │ ├── grid.py │ ├── plot.py │ └── series.py ├── rendering.py ├── template.jinja └── themes │ ├── 538.json │ ├── __init__.py │ ├── alone.json │ ├── bloom.json │ ├── db.json │ ├── easychart.json │ ├── economist.json │ ├── elementary.json │ ├── ffx.json │ ├── flat.json │ ├── flatdark.json │ ├── ft.json │ ├── ggplot2.json │ ├── google.json │ ├── highcharts.json │ ├── monokai.json │ ├── null.json │ ├── smpl.json │ ├── superheroes.json │ ├── tufte.json │ └── tufte2.json ├── pytest.ini ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── regression-tests ├── README.md ├── conftest.py ├── data │ ├── chart-1.regtest.json │ ├── chart-10.regtest.json │ ├── chart-11.regtest.json │ ├── chart-12.regtest.json │ ├── chart-13.regtest.json │ ├── chart-14.regtest.json │ ├── chart-15.regtest.json │ ├── chart-17.regtest.json │ ├── chart-18.regtest.json │ ├── chart-19.regtest.json │ ├── chart-2.regtest.json │ ├── chart-20.regtest.json │ ├── chart-21.regtest.json │ ├── chart-22.regtest.json │ ├── chart-23.regtest.json │ ├── chart-24.regtest.json │ ├── chart-25.regtest.json │ ├── chart-26.regtest.json │ ├── chart-27.regtest.json │ ├── chart-28.regtest.json │ ├── chart-29.regtest.json │ ├── chart-3.regtest.json │ ├── chart-30.regtest.json │ ├── chart-31.regtest.json │ ├── chart-32.regtest.json │ ├── chart-33.regtest.json │ ├── chart-34.regtest.json │ ├── chart-35.regtest.json │ ├── chart-36.regtest.json │ ├── chart-37.regtest.json │ ├── chart-38.regtest.json │ ├── chart-39.regtest.json │ ├── chart-40.regtest.json │ ├── chart-41.regtest.json │ ├── chart-42.regtest.json │ ├── chart-43.regtest.json │ ├── chart-44.regtest.json │ ├── chart-45.regtest.json │ ├── chart-46.regtest.json │ ├── chart-47.regtest.json │ ├── chart-48.regtest.json │ ├── chart-49.regtest.json │ ├── chart-5.regtest.json │ ├── chart-50.regtest.json │ ├── chart-51.regtest.json │ ├── chart-52.regtest.json │ ├── chart-53.regtest.json │ ├── chart-54.regtest.json │ ├── chart-55.regtest.json │ ├── chart-56.regtest.json │ ├── chart-57.regtest.json │ ├── chart-58.regtest.json │ ├── chart-59.regtest.json │ ├── chart-6.regtest.json │ ├── chart-7.regtest.json │ ├── chart-8.regtest.json │ └── chart-9.regtest.json └── tests │ ├── chart-1.py │ ├── chart-10.py │ ├── chart-11.py │ ├── chart-12.py │ ├── chart-13.py │ ├── chart-14.py │ ├── chart-15.py │ ├── chart-17.py │ ├── chart-18.py │ ├── chart-19.py │ ├── chart-2.py │ ├── chart-20.py │ ├── chart-21.py │ ├── chart-22.py │ ├── chart-23.py │ ├── chart-24.py │ ├── chart-25.py │ ├── chart-26.py │ ├── chart-27.py │ ├── chart-28.py │ ├── chart-29.py │ ├── chart-3.py │ ├── chart-30.py │ ├── chart-31.py │ ├── chart-32.py │ ├── chart-33.py │ ├── chart-34.py │ ├── chart-35.py │ ├── chart-36.py │ ├── chart-37.py │ ├── chart-38.py │ ├── chart-39.py │ ├── chart-40.py │ ├── chart-41.py │ ├── chart-42.py │ ├── chart-43.py │ ├── chart-44.py │ ├── chart-45.py │ ├── chart-46.py │ ├── chart-47.py │ ├── chart-48.py │ ├── chart-49.py │ ├── chart-5.py │ ├── chart-50.py │ ├── chart-51.py │ ├── chart-52.py │ ├── chart-53.py │ ├── chart-54.py │ ├── chart-55.py │ ├── chart-56.py │ ├── chart-57.py │ ├── chart-58.py │ ├── chart-59.py │ ├── chart-6.py │ ├── chart-7.py │ ├── chart-8.py │ └── chart-9.py └── unit-tests ├── encoders.py ├── extensions └── __init__.py ├── functions.py ├── internals.py └── models.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_misc/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/compile.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-1.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-10.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-11.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-12.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-13.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-14.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-15.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-16.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-17.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-18.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-19.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-2.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-20.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-21.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-22.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-23.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-24.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-25.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-26.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-27.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-28.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-29.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-3.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-30.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-31.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-32.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-33.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-34.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-35.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-36.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-37.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-38.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-39.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-4.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-40.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-41.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-42.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-43.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-44.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-45.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-46.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-47.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-48.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-49.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-5.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-50.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-51.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-52.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-53.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-54.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-55.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-56.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-57.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-58.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-59.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-6.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-60.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-61.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-62.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-62.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-63.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-63.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-64.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-65.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-65.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-66.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-66.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-7.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-8.py -------------------------------------------------------------------------------- /docs/_misc/examples/chart-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/_misc/examples/chart-9.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents/API/Chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/Chart.rst -------------------------------------------------------------------------------- /docs/contents/API/Grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/Grid.rst -------------------------------------------------------------------------------- /docs/contents/API/Plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/Plot.rst -------------------------------------------------------------------------------- /docs/contents/API/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/index.rst -------------------------------------------------------------------------------- /docs/contents/API/utilities/heatmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/utilities/heatmap.rst -------------------------------------------------------------------------------- /docs/contents/API/utilities/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/utilities/index.rst -------------------------------------------------------------------------------- /docs/contents/API/utilities/new.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/utilities/new.rst -------------------------------------------------------------------------------- /docs/contents/API/utilities/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/utilities/plot.rst -------------------------------------------------------------------------------- /docs/contents/API/utilities/render.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/API/utilities/render.rst -------------------------------------------------------------------------------- /docs/contents/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/about.rst -------------------------------------------------------------------------------- /docs/contents/colormaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/colormaps.rst -------------------------------------------------------------------------------- /docs/contents/dimensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/dimensions.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-1.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-10.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-11.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-12.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-13.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-14.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-14.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-15.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-15.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-16.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-17.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-17.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-18.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-18.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-19.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-19.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-2.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-20.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-20.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-21.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-21.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-22.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-22.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-23.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-23.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-24.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-24.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-27.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-27.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-28.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-28.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-3.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-30.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-30.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-31.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-31.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-33.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-33.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-34.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-34.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-35.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-35.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-36.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-36.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-37.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-37.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-38.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-38.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-39.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-39.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-4.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-40.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-40.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-41.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-41.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-5.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-6.rst -------------------------------------------------------------------------------- /docs/contents/examples/example-7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/example-7.rst -------------------------------------------------------------------------------- /docs/contents/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/examples/index.rst -------------------------------------------------------------------------------- /docs/contents/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/introduction.rst -------------------------------------------------------------------------------- /docs/contents/plotting-with-pandas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/plotting-with-pandas.rst -------------------------------------------------------------------------------- /docs/contents/rendering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/rendering.rst -------------------------------------------------------------------------------- /docs/contents/streamlit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/streamlit.rst -------------------------------------------------------------------------------- /docs/contents/themes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/contents/themes.rst -------------------------------------------------------------------------------- /docs/fragments/badges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/fragments/badges.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/static/charts/chart-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-1.json -------------------------------------------------------------------------------- /docs/static/charts/chart-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-10.json -------------------------------------------------------------------------------- /docs/static/charts/chart-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-11.json -------------------------------------------------------------------------------- /docs/static/charts/chart-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-12.json -------------------------------------------------------------------------------- /docs/static/charts/chart-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-13.json -------------------------------------------------------------------------------- /docs/static/charts/chart-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-14.json -------------------------------------------------------------------------------- /docs/static/charts/chart-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-15.json -------------------------------------------------------------------------------- /docs/static/charts/chart-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-16.json -------------------------------------------------------------------------------- /docs/static/charts/chart-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-17.json -------------------------------------------------------------------------------- /docs/static/charts/chart-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-18.json -------------------------------------------------------------------------------- /docs/static/charts/chart-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-19.json -------------------------------------------------------------------------------- /docs/static/charts/chart-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-2.json -------------------------------------------------------------------------------- /docs/static/charts/chart-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-20.json -------------------------------------------------------------------------------- /docs/static/charts/chart-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-21.json -------------------------------------------------------------------------------- /docs/static/charts/chart-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-22.json -------------------------------------------------------------------------------- /docs/static/charts/chart-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-23.json -------------------------------------------------------------------------------- /docs/static/charts/chart-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-24.json -------------------------------------------------------------------------------- /docs/static/charts/chart-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-25.json -------------------------------------------------------------------------------- /docs/static/charts/chart-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-26.json -------------------------------------------------------------------------------- /docs/static/charts/chart-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-27.json -------------------------------------------------------------------------------- /docs/static/charts/chart-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-28.json -------------------------------------------------------------------------------- /docs/static/charts/chart-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-29.json -------------------------------------------------------------------------------- /docs/static/charts/chart-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-3.json -------------------------------------------------------------------------------- /docs/static/charts/chart-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-30.json -------------------------------------------------------------------------------- /docs/static/charts/chart-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-31.json -------------------------------------------------------------------------------- /docs/static/charts/chart-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-32.json -------------------------------------------------------------------------------- /docs/static/charts/chart-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-33.json -------------------------------------------------------------------------------- /docs/static/charts/chart-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-34.json -------------------------------------------------------------------------------- /docs/static/charts/chart-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-35.json -------------------------------------------------------------------------------- /docs/static/charts/chart-36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-36.json -------------------------------------------------------------------------------- /docs/static/charts/chart-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-37.json -------------------------------------------------------------------------------- /docs/static/charts/chart-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-38.json -------------------------------------------------------------------------------- /docs/static/charts/chart-39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-39.json -------------------------------------------------------------------------------- /docs/static/charts/chart-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-4.json -------------------------------------------------------------------------------- /docs/static/charts/chart-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-40.json -------------------------------------------------------------------------------- /docs/static/charts/chart-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-41.json -------------------------------------------------------------------------------- /docs/static/charts/chart-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-42.json -------------------------------------------------------------------------------- /docs/static/charts/chart-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-43.json -------------------------------------------------------------------------------- /docs/static/charts/chart-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-44.json -------------------------------------------------------------------------------- /docs/static/charts/chart-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-45.json -------------------------------------------------------------------------------- /docs/static/charts/chart-46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-46.json -------------------------------------------------------------------------------- /docs/static/charts/chart-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-47.json -------------------------------------------------------------------------------- /docs/static/charts/chart-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-48.json -------------------------------------------------------------------------------- /docs/static/charts/chart-49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-49.json -------------------------------------------------------------------------------- /docs/static/charts/chart-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-5.json -------------------------------------------------------------------------------- /docs/static/charts/chart-50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-50.json -------------------------------------------------------------------------------- /docs/static/charts/chart-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-51.json -------------------------------------------------------------------------------- /docs/static/charts/chart-52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-52.json -------------------------------------------------------------------------------- /docs/static/charts/chart-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-53.json -------------------------------------------------------------------------------- /docs/static/charts/chart-54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-54.json -------------------------------------------------------------------------------- /docs/static/charts/chart-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-55.json -------------------------------------------------------------------------------- /docs/static/charts/chart-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-56.json -------------------------------------------------------------------------------- /docs/static/charts/chart-57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-57.json -------------------------------------------------------------------------------- /docs/static/charts/chart-58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-58.json -------------------------------------------------------------------------------- /docs/static/charts/chart-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-59.json -------------------------------------------------------------------------------- /docs/static/charts/chart-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-6.json -------------------------------------------------------------------------------- /docs/static/charts/chart-60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-60.json -------------------------------------------------------------------------------- /docs/static/charts/chart-61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-61.json -------------------------------------------------------------------------------- /docs/static/charts/chart-62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-62.json -------------------------------------------------------------------------------- /docs/static/charts/chart-63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-63.json -------------------------------------------------------------------------------- /docs/static/charts/chart-64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-64.json -------------------------------------------------------------------------------- /docs/static/charts/chart-65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-65.json -------------------------------------------------------------------------------- /docs/static/charts/chart-66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-66.json -------------------------------------------------------------------------------- /docs/static/charts/chart-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-7.json -------------------------------------------------------------------------------- /docs/static/charts/chart-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-8.json -------------------------------------------------------------------------------- /docs/static/charts/chart-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/charts/chart-9.json -------------------------------------------------------------------------------- /docs/static/colormaps/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/accent.png -------------------------------------------------------------------------------- /docs/static/colormaps/afmhot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/afmhot.png -------------------------------------------------------------------------------- /docs/static/colormaps/autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/autumn.png -------------------------------------------------------------------------------- /docs/static/colormaps/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/binary.png -------------------------------------------------------------------------------- /docs/static/colormaps/blues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/blues.png -------------------------------------------------------------------------------- /docs/static/colormaps/bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/bone.png -------------------------------------------------------------------------------- /docs/static/colormaps/brbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/brbg.png -------------------------------------------------------------------------------- /docs/static/colormaps/brg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/brg.png -------------------------------------------------------------------------------- /docs/static/colormaps/bugn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/bugn.png -------------------------------------------------------------------------------- /docs/static/colormaps/bupu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/bupu.png -------------------------------------------------------------------------------- /docs/static/colormaps/bwr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/bwr.png -------------------------------------------------------------------------------- /docs/static/colormaps/cividis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/cividis.png -------------------------------------------------------------------------------- /docs/static/colormaps/cmrmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/cmrmap.png -------------------------------------------------------------------------------- /docs/static/colormaps/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/cool.png -------------------------------------------------------------------------------- /docs/static/colormaps/coolwarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/coolwarm.png -------------------------------------------------------------------------------- /docs/static/colormaps/copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/copper.png -------------------------------------------------------------------------------- /docs/static/colormaps/cubehelix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/cubehelix.png -------------------------------------------------------------------------------- /docs/static/colormaps/dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/dark2.png -------------------------------------------------------------------------------- /docs/static/colormaps/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/flag.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_earth.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_gray.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_heat.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_ncar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_ncar.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_rainbow.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_stern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_stern.png -------------------------------------------------------------------------------- /docs/static/colormaps/gist_yarg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gist_yarg.png -------------------------------------------------------------------------------- /docs/static/colormaps/gnbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gnbu.png -------------------------------------------------------------------------------- /docs/static/colormaps/gnuplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gnuplot.png -------------------------------------------------------------------------------- /docs/static/colormaps/gnuplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gnuplot2.png -------------------------------------------------------------------------------- /docs/static/colormaps/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/gray.png -------------------------------------------------------------------------------- /docs/static/colormaps/greens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/greens.png -------------------------------------------------------------------------------- /docs/static/colormaps/greys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/greys.png -------------------------------------------------------------------------------- /docs/static/colormaps/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/hot.png -------------------------------------------------------------------------------- /docs/static/colormaps/hsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/hsv.png -------------------------------------------------------------------------------- /docs/static/colormaps/inferno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/inferno.png -------------------------------------------------------------------------------- /docs/static/colormaps/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/jet.png -------------------------------------------------------------------------------- /docs/static/colormaps/magma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/magma.png -------------------------------------------------------------------------------- /docs/static/colormaps/nipy_spectral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/nipy_spectral.png -------------------------------------------------------------------------------- /docs/static/colormaps/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/ocean.png -------------------------------------------------------------------------------- /docs/static/colormaps/oranges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/oranges.png -------------------------------------------------------------------------------- /docs/static/colormaps/orrd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/orrd.png -------------------------------------------------------------------------------- /docs/static/colormaps/paired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/paired.png -------------------------------------------------------------------------------- /docs/static/colormaps/pastel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/pastel1.png -------------------------------------------------------------------------------- /docs/static/colormaps/pastel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/pastel2.png -------------------------------------------------------------------------------- /docs/static/colormaps/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/pink.png -------------------------------------------------------------------------------- /docs/static/colormaps/piyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/piyg.png -------------------------------------------------------------------------------- /docs/static/colormaps/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/plasma.png -------------------------------------------------------------------------------- /docs/static/colormaps/prgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/prgn.png -------------------------------------------------------------------------------- /docs/static/colormaps/prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/prism.png -------------------------------------------------------------------------------- /docs/static/colormaps/pubu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/pubu.png -------------------------------------------------------------------------------- /docs/static/colormaps/pubugn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/pubugn.png -------------------------------------------------------------------------------- /docs/static/colormaps/puor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/puor.png -------------------------------------------------------------------------------- /docs/static/colormaps/purd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/purd.png -------------------------------------------------------------------------------- /docs/static/colormaps/purples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/purples.png -------------------------------------------------------------------------------- /docs/static/colormaps/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/rainbow.png -------------------------------------------------------------------------------- /docs/static/colormaps/rdbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/rdbu.png -------------------------------------------------------------------------------- /docs/static/colormaps/rdgy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/rdgy.png -------------------------------------------------------------------------------- /docs/static/colormaps/rdpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/rdpu.png -------------------------------------------------------------------------------- /docs/static/colormaps/rdylbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/rdylbu.png -------------------------------------------------------------------------------- /docs/static/colormaps/rdylgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/rdylgn.png -------------------------------------------------------------------------------- /docs/static/colormaps/reds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/reds.png -------------------------------------------------------------------------------- /docs/static/colormaps/seismic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/seismic.png -------------------------------------------------------------------------------- /docs/static/colormaps/set1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/set1.png -------------------------------------------------------------------------------- /docs/static/colormaps/set2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/set2.png -------------------------------------------------------------------------------- /docs/static/colormaps/set3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/set3.png -------------------------------------------------------------------------------- /docs/static/colormaps/spectral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/spectral.png -------------------------------------------------------------------------------- /docs/static/colormaps/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/spring.png -------------------------------------------------------------------------------- /docs/static/colormaps/summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/summer.png -------------------------------------------------------------------------------- /docs/static/colormaps/tab10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/tab10.png -------------------------------------------------------------------------------- /docs/static/colormaps/tab20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/tab20.png -------------------------------------------------------------------------------- /docs/static/colormaps/tab20b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/tab20b.png -------------------------------------------------------------------------------- /docs/static/colormaps/tab20c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/tab20c.png -------------------------------------------------------------------------------- /docs/static/colormaps/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/terrain.png -------------------------------------------------------------------------------- /docs/static/colormaps/turbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/turbo.png -------------------------------------------------------------------------------- /docs/static/colormaps/twilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/twilight.png -------------------------------------------------------------------------------- /docs/static/colormaps/twilight_shifted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/twilight_shifted.png -------------------------------------------------------------------------------- /docs/static/colormaps/viridis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/viridis.png -------------------------------------------------------------------------------- /docs/static/colormaps/winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/winter.png -------------------------------------------------------------------------------- /docs/static/colormaps/wistia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/wistia.png -------------------------------------------------------------------------------- /docs/static/colormaps/ylgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/ylgn.png -------------------------------------------------------------------------------- /docs/static/colormaps/ylgnbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/ylgnbu.png -------------------------------------------------------------------------------- /docs/static/colormaps/ylorbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/ylorbr.png -------------------------------------------------------------------------------- /docs/static/colormaps/ylorrd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/colormaps/ylorrd.png -------------------------------------------------------------------------------- /docs/static/demo (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/demo (1).svg -------------------------------------------------------------------------------- /docs/static/index-eefeb6a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/index-eefeb6a3.js -------------------------------------------------------------------------------- /docs/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/docs/static/logo.svg -------------------------------------------------------------------------------- /docs/static/style.css: -------------------------------------------------------------------------------- 1 | div.chart-container { 2 | border:1px solid #fffcfc; 3 | } -------------------------------------------------------------------------------- /easychart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/__init__.py -------------------------------------------------------------------------------- /easychart/colormaps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/__init__.py -------------------------------------------------------------------------------- /easychart/colormaps/accent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/accent.json -------------------------------------------------------------------------------- /easychart/colormaps/afmhot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/afmhot.json -------------------------------------------------------------------------------- /easychart/colormaps/autumn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/autumn.json -------------------------------------------------------------------------------- /easychart/colormaps/binary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/binary.json -------------------------------------------------------------------------------- /easychart/colormaps/blues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/blues.json -------------------------------------------------------------------------------- /easychart/colormaps/bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/bone.json -------------------------------------------------------------------------------- /easychart/colormaps/brbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/brbg.json -------------------------------------------------------------------------------- /easychart/colormaps/brg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/brg.json -------------------------------------------------------------------------------- /easychart/colormaps/bugn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/bugn.json -------------------------------------------------------------------------------- /easychart/colormaps/bupu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/bupu.json -------------------------------------------------------------------------------- /easychart/colormaps/bwr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/bwr.json -------------------------------------------------------------------------------- /easychart/colormaps/cividis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/cividis.json -------------------------------------------------------------------------------- /easychart/colormaps/cmrmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/cmrmap.json -------------------------------------------------------------------------------- /easychart/colormaps/cool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/cool.json -------------------------------------------------------------------------------- /easychart/colormaps/coolwarm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/coolwarm.json -------------------------------------------------------------------------------- /easychart/colormaps/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/copper.json -------------------------------------------------------------------------------- /easychart/colormaps/cubehelix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/cubehelix.json -------------------------------------------------------------------------------- /easychart/colormaps/dark2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/dark2.json -------------------------------------------------------------------------------- /easychart/colormaps/flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/flag.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_earth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_earth.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_gray.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_heat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_heat.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_ncar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_ncar.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_rainbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_rainbow.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_stern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_stern.json -------------------------------------------------------------------------------- /easychart/colormaps/gist_yarg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gist_yarg.json -------------------------------------------------------------------------------- /easychart/colormaps/gnbu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gnbu.json -------------------------------------------------------------------------------- /easychart/colormaps/gnuplot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gnuplot.json -------------------------------------------------------------------------------- /easychart/colormaps/gnuplot2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gnuplot2.json -------------------------------------------------------------------------------- /easychart/colormaps/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/gray.json -------------------------------------------------------------------------------- /easychart/colormaps/greens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/greens.json -------------------------------------------------------------------------------- /easychart/colormaps/greys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/greys.json -------------------------------------------------------------------------------- /easychart/colormaps/hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/hot.json -------------------------------------------------------------------------------- /easychart/colormaps/hsv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/hsv.json -------------------------------------------------------------------------------- /easychart/colormaps/inferno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/inferno.json -------------------------------------------------------------------------------- /easychart/colormaps/jet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/jet.json -------------------------------------------------------------------------------- /easychart/colormaps/magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/magma.json -------------------------------------------------------------------------------- /easychart/colormaps/nipy_spectral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/nipy_spectral.json -------------------------------------------------------------------------------- /easychart/colormaps/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/ocean.json -------------------------------------------------------------------------------- /easychart/colormaps/oranges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/oranges.json -------------------------------------------------------------------------------- /easychart/colormaps/orrd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/orrd.json -------------------------------------------------------------------------------- /easychart/colormaps/paired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/paired.json -------------------------------------------------------------------------------- /easychart/colormaps/pastel1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/pastel1.json -------------------------------------------------------------------------------- /easychart/colormaps/pastel2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/pastel2.json -------------------------------------------------------------------------------- /easychart/colormaps/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/pink.json -------------------------------------------------------------------------------- /easychart/colormaps/piyg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/piyg.json -------------------------------------------------------------------------------- /easychart/colormaps/plasma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/plasma.json -------------------------------------------------------------------------------- /easychart/colormaps/prgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/prgn.json -------------------------------------------------------------------------------- /easychart/colormaps/prism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/prism.json -------------------------------------------------------------------------------- /easychart/colormaps/pubu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/pubu.json -------------------------------------------------------------------------------- /easychart/colormaps/pubugn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/pubugn.json -------------------------------------------------------------------------------- /easychart/colormaps/puor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/puor.json -------------------------------------------------------------------------------- /easychart/colormaps/purd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/purd.json -------------------------------------------------------------------------------- /easychart/colormaps/purples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/purples.json -------------------------------------------------------------------------------- /easychart/colormaps/rainbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/rainbow.json -------------------------------------------------------------------------------- /easychart/colormaps/rdbu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/rdbu.json -------------------------------------------------------------------------------- /easychart/colormaps/rdgy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/rdgy.json -------------------------------------------------------------------------------- /easychart/colormaps/rdpu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/rdpu.json -------------------------------------------------------------------------------- /easychart/colormaps/rdylbu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/rdylbu.json -------------------------------------------------------------------------------- /easychart/colormaps/rdylgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/rdylgn.json -------------------------------------------------------------------------------- /easychart/colormaps/reds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/reds.json -------------------------------------------------------------------------------- /easychart/colormaps/seismic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/seismic.json -------------------------------------------------------------------------------- /easychart/colormaps/set1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/set1.json -------------------------------------------------------------------------------- /easychart/colormaps/set2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/set2.json -------------------------------------------------------------------------------- /easychart/colormaps/set3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/set3.json -------------------------------------------------------------------------------- /easychart/colormaps/spectral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/spectral.json -------------------------------------------------------------------------------- /easychart/colormaps/spring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/spring.json -------------------------------------------------------------------------------- /easychart/colormaps/summer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/summer.json -------------------------------------------------------------------------------- /easychart/colormaps/tab10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/tab10.json -------------------------------------------------------------------------------- /easychart/colormaps/tab20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/tab20.json -------------------------------------------------------------------------------- /easychart/colormaps/tab20b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/tab20b.json -------------------------------------------------------------------------------- /easychart/colormaps/tab20c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/tab20c.json -------------------------------------------------------------------------------- /easychart/colormaps/terrain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/terrain.json -------------------------------------------------------------------------------- /easychart/colormaps/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/turbo.json -------------------------------------------------------------------------------- /easychart/colormaps/twilight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/twilight.json -------------------------------------------------------------------------------- /easychart/colormaps/twilight_shifted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/twilight_shifted.json -------------------------------------------------------------------------------- /easychart/colormaps/viridis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/viridis.json -------------------------------------------------------------------------------- /easychart/colormaps/winter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/winter.json -------------------------------------------------------------------------------- /easychart/colormaps/wistia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/wistia.json -------------------------------------------------------------------------------- /easychart/colormaps/ylgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/ylgn.json -------------------------------------------------------------------------------- /easychart/colormaps/ylgnbu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/ylgnbu.json -------------------------------------------------------------------------------- /easychart/colormaps/ylorbr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/ylorbr.json -------------------------------------------------------------------------------- /easychart/colormaps/ylorrd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/colormaps/ylorrd.json -------------------------------------------------------------------------------- /easychart/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/config.py -------------------------------------------------------------------------------- /easychart/datasets/S&P500.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/S&P500.csv -------------------------------------------------------------------------------- /easychart/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/__init__.py -------------------------------------------------------------------------------- /easychart/datasets/diamonds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/diamonds.csv -------------------------------------------------------------------------------- /easychart/datasets/electricity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/electricity.csv -------------------------------------------------------------------------------- /easychart/datasets/olympics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/olympics.csv -------------------------------------------------------------------------------- /easychart/datasets/populations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/populations.csv -------------------------------------------------------------------------------- /easychart/datasets/stocks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/stocks.csv -------------------------------------------------------------------------------- /easychart/datasets/unemployment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/datasets/unemployment.csv -------------------------------------------------------------------------------- /easychart/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/encoders.py -------------------------------------------------------------------------------- /easychart/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/extensions/__init__.py -------------------------------------------------------------------------------- /easychart/extensions/racechart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/extensions/racechart/__init__.py -------------------------------------------------------------------------------- /easychart/extensions/racechart/template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/extensions/racechart/template.jinja -------------------------------------------------------------------------------- /easychart/internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/internals.py -------------------------------------------------------------------------------- /easychart/ipynb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/ipynb.py -------------------------------------------------------------------------------- /easychart/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/models/__init__.py -------------------------------------------------------------------------------- /easychart/models/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/models/chart.py -------------------------------------------------------------------------------- /easychart/models/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/models/grid.py -------------------------------------------------------------------------------- /easychart/models/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/models/plot.py -------------------------------------------------------------------------------- /easychart/models/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/models/series.py -------------------------------------------------------------------------------- /easychart/rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/rendering.py -------------------------------------------------------------------------------- /easychart/template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/template.jinja -------------------------------------------------------------------------------- /easychart/themes/538.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/538.json -------------------------------------------------------------------------------- /easychart/themes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/__init__.py -------------------------------------------------------------------------------- /easychart/themes/alone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/alone.json -------------------------------------------------------------------------------- /easychart/themes/bloom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/bloom.json -------------------------------------------------------------------------------- /easychart/themes/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/db.json -------------------------------------------------------------------------------- /easychart/themes/easychart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/easychart.json -------------------------------------------------------------------------------- /easychart/themes/economist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/economist.json -------------------------------------------------------------------------------- /easychart/themes/elementary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/elementary.json -------------------------------------------------------------------------------- /easychart/themes/ffx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/ffx.json -------------------------------------------------------------------------------- /easychart/themes/flat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/flat.json -------------------------------------------------------------------------------- /easychart/themes/flatdark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/flatdark.json -------------------------------------------------------------------------------- /easychart/themes/ft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/ft.json -------------------------------------------------------------------------------- /easychart/themes/ggplot2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/ggplot2.json -------------------------------------------------------------------------------- /easychart/themes/google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/google.json -------------------------------------------------------------------------------- /easychart/themes/highcharts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/highcharts.json -------------------------------------------------------------------------------- /easychart/themes/monokai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/monokai.json -------------------------------------------------------------------------------- /easychart/themes/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/null.json -------------------------------------------------------------------------------- /easychart/themes/smpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/smpl.json -------------------------------------------------------------------------------- /easychart/themes/superheroes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/superheroes.json -------------------------------------------------------------------------------- /easychart/themes/tufte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/tufte.json -------------------------------------------------------------------------------- /easychart/themes/tufte2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/easychart/themes/tufte2.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/regression-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/README.md -------------------------------------------------------------------------------- /tests/regression-tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/conftest.py -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-1.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-1.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-10.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-10.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-11.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-11.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-12.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-12.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-13.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-13.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-14.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-14.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-15.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-15.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-17.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-17.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-18.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-18.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-19.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-19.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-2.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-2.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-20.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-20.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-21.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-21.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-22.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-22.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-23.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-23.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-24.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-24.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-25.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-25.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-26.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-26.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-27.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-27.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-28.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-28.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-29.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-29.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-3.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-3.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-30.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-30.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-31.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-31.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-32.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-32.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-33.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-33.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-34.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-34.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-35.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-35.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-36.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-36.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-37.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-37.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-38.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-38.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-39.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-39.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-40.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-40.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-41.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-41.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-42.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-42.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-43.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-43.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-44.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-44.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-45.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-45.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-46.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-46.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-47.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-47.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-48.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-48.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-49.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-49.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-5.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-5.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-50.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-50.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-51.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-51.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-52.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-52.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-53.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-53.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-54.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-54.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-55.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-55.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-56.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-56.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-57.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-57.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-58.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-58.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-59.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-59.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-6.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-6.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-7.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-7.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-8.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-8.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/data/chart-9.regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/data/chart-9.regtest.json -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-1.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-10.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-11.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-12.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-13.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-14.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-15.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-17.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-18.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-19.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-2.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-20.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-21.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-22.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-23.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-24.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-25.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-26.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-27.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-28.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-29.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-3.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-30.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-31.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-32.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-33.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-34.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-35.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-36.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-37.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-38.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-39.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-40.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-41.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-42.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-43.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-44.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-45.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-46.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-47.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-48.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-49.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-5.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-50.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-51.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-52.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-53.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-54.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-55.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-56.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-57.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-58.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-59.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-6.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-7.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-8.py -------------------------------------------------------------------------------- /tests/regression-tests/tests/chart-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/regression-tests/tests/chart-9.py -------------------------------------------------------------------------------- /tests/unit-tests/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/unit-tests/encoders.py -------------------------------------------------------------------------------- /tests/unit-tests/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/unit-tests/extensions/__init__.py -------------------------------------------------------------------------------- /tests/unit-tests/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/unit-tests/functions.py -------------------------------------------------------------------------------- /tests/unit-tests/internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/unit-tests/internals.py -------------------------------------------------------------------------------- /tests/unit-tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschenck/easychart/HEAD/tests/unit-tests/models.py --------------------------------------------------------------------------------