streamlit-agraph icon indicating copy to clipboard operation
streamlit-agraph copied to clipboard

Edge label is not shown if its type is number

Open icduck opened this issue 2 years ago • 0 comments

currently, I have to force it to str() like below: for _, row in df.iterrows(): edges.append(Edge(source=row['up_node_id'], target=row['down_node_id'], id=row['edge_id'], label=str(row['edge_id'])))

icduck avatar Feb 25 '23 15:02 icduck