easychart#

Highcharts meets python in your jupyter notebook

https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue https://github.com/dschenck/easychart/workflows/testing/badge.svg https://badge.fury.io/py/easychart.svg https://readthedocs.org/projects/easychart/badge/?version=latest https://img.shields.io/badge/code%20style-black-000000.svg https://codecov.io/gh/dschenck/easychart/graph/badge.svg?token=15YL7WJJAT

Quickstart#

Installing easychart is simple with pip:

pip install easychart

Open up a new Jupyter notebook and start creating your charts:

import easychart

chart = easychart.new("column")
chart.title = "France Olympic medals"
chart.subtitle = "by year and by medal class"
chart.yAxis.title.text = "medals"
chart.categories = ["Gold","Silver","Bronze"]
chart.plot([7, 16, 18], name=2008)
chart.plot([11, 11, 13], name=2012)
chart
loading...

Source#

Code is hosted on github