sir
For the installation of streamlit_apex_charts, I encountered an error with pip.
see error
waiting for your right code
sir
For the installation of streamlit_apex_charts, I encountered an error with pip.
see error
I think that the name of the package is not proper.
Try :
pip install streamlit-apexjs
Happy coding
thank you for your reply
boss see the code and link
from streamlit_apex_charts import line_chart, bar_chart, pie_chart, area_chart,
import numpy as np
import pandas as pd
import streamlit as st
from streamlit_apex_charts import line_chart, bar_chart, pie_chart, area_chart, radar_chart
st.set_page_config(layout=“wide”)
df = pd.DataFrame(np.random.randint(1,10,size=(10, 3)),columns=[‘Apple’, ‘Microsoft’, ‘Google’])
line_chart(‘Line chart’,df)
c1, c2 = st.columns(2)
with c1:
bar_chart(‘Bar chart’,df)
pie_chart(‘Pie chart’,df)
with c2:
area_chart(‘Area chart’,df)
radar_chart(‘Radar chart’,df)
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.