VelloSharp.ChartRuntime
VelloSharp.ChartRuntime
coordinates scheduling, background processing, and state management for high-frequency chart updates.
Getting Started
- Install with
dotnet add package VelloSharp.ChartRuntime
. - Import
using VelloSharp.ChartRuntime;
in the assemblies that manage live data feeds or animation loops. - Configure a runtime instance using the builders in the package, wiring in timers, data queues, or task schedulers to push updates into the chart engine.
- Combine the runtime with
VelloSharp.ChartEngine
and the platform-specific charting controls to deliver smooth, real-time experiences.
Usage Example
using System;
using VelloSharp.ChartRuntime;
var scheduler = new RenderScheduler(TimeSpan.FromMilliseconds(16), TimeProvider.System);
Next Steps
- Refer to the API reference for lifecycle hooks, scheduler options, and extensibility points.
- Stress test your runtime configuration with synthetic data to ensure throughput targets are met before going live.