-
Notifications
You must be signed in to change notification settings - Fork 26
Add live data support #1
Description
Feature Request
Is your feature request related to a problem? Please describe.
Currently, the charting library only supports static, pre-loaded data charts. This limits its usefulness for real-time financial/market tracking and other dynamic use-cases.
Describe the solution you'd like
Add support for displaying live data within the charts. The library should fetch and update chart data in real-time, either through APIs or WebSocket connections, so users can visualize changing data as it arrives.
Describe alternatives you've considered
- Refreshing the chart at fixed intervals (e.g., polling for new data every X seconds)
- Using external plugins or modifying the codebase to integrate live data manually
Additional context
Live data support would significantly increase the appeal of this library for financial applications, dashboards, and monitoring tools. Consider allowing for both push (WebSocket) and pull (API) data sources for maximum flexibility.