Skip to content

Commit

Permalink
Updated examples and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Feb 16, 2019
1 parent 95718e4 commit c8465ba
Show file tree
Hide file tree
Showing 5 changed files with 171 additions and 154 deletions.
16 changes: 16 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
History
=======

2.4.0 (2019-02-16)
------------------

Improvements:

* Added second Y axis plotting.
* Removed Bokeh loading notification on import (Thanks @canavandl!)
* Added support for custom Bokeh resource loading (Thanks @canavandl!)
* Added example for Chart.save() method (Thanks @david30907d!)

Bugfixes:

* Updated documentation for saving and showing svgs.
* Fixed bug that broke plots with no difference between min and max
points. (Thanks for finding @fabioconcina!)

2.3.5 (2018-11-21)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Chartify
|status| |release| |python|

.. |status| image:: https://img.shields.io/badge/Status-Beta-blue.svg
.. |release| image:: https://img.shields.io/badge/Release-2.3.5-blue.svg
.. |release| image:: https://img.shields.io/badge/Release-2.4.0-blue.svg
.. |python| image:: https://img.shields.io/badge/Python-3.6-blue.svg

Chartify is a Python library that makes it easy for data scientists to create charts.
Expand Down
2 changes: 1 addition & 1 deletion chartify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

__author__ = """Chris Halpert"""
__email__ = '[email protected]'
__version__ = '2.3.5'
__version__ = '2.4.0'

_IPYTHON_INSTANCE = False

Expand Down
6 changes: 5 additions & 1 deletion chartify/_core/axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,4 +608,8 @@ def __init__(self, chart):


class SecondAxis:
"""Class for second axis."""
"""Class for second axis.
- Plotting (.plot)
- Axes (.axes)
"""
299 changes: 148 additions & 151 deletions examples/Examples.ipynb

Large diffs are not rendered by default.

0 comments on commit c8465ba

Please sign in to comment.