Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 305 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 305 Bytes

Chart.py

Python wrapper for Chart.js

Install

pip install git+https://github.com/juhajokela/Chart.py

Usage

from chart_py import MixedChart


chart = MixedChart(['a', 'b', 'c'])
chart.add_dataset([1, 2, 3], type='bar')
chart.add_dataset([1, 3, 6], type='line')
chart.as_html()