You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Better, Faster, and Simpler Python Visualization Library
GlyphX is a modern alternative to matplotlib.pyplot with interactive, SVG-based charts that automatically display in:
Jupyter notebooks
CLI environments
IDEs
It provides simplicity, high-quality rendering, built-in tooltips, zoom/pan, and export options — without ever needing plt.show().
Features
Feature
GlyphX
Matplotlib
Auto-display
✅
❌
Interactive tooltips
✅
❌
Zoom / pan (in browser)
✅
❌
Built-in export buttons
✅ SVG/PNG/JPG
❌
Multi-plot grid layout
✅
✅
Seaborn-style charts
✅ (lmplot, pairplot, etc.)
Partial
Hover highlighting
✅
❌
Colorblind-friendly mode
✅
❌
Shared axes support
✅
✅
Font & theme customization
✅
✅
Installation
pip install glyphx
Quick Example
fromglyphximportplotfig=plot(x=[1, 2, 3], y=[2, 4, 6], kind="line", label="Demo")
# No need for fig.show(); it auto-displays in Jupyter or saves via fig.save()