Hi Community,
I am pleased to present my latest component streamlit_apex_charts.
it’s just a wrapper over ApexCharts.js
Installation
pip install streamlit-apex-charts
Getting started
import numpy as np
import pandas as pd
from streamlit_apex_charts import line_chart
df = pd.DataFrame(np.random.randint(1,10,size=(10, 3)),columns=['Apple', 'Microsoft', 'Google'])
line_chart('Zoomable Line chart',df)
Demo
Not like we don’t have enough charting options in streamlit
But I just liked the material-ui like style of apex charts.
Again the charts are fully customizable and work with data frames just like native streamlit charts.
Excited to see what the community builds with this.
Thanks,
Akshansh