VelloSharp.ChartRuntime.Windows
VelloSharp.ChartRuntime.Windows
adds Windows-specific scheduling, threading, and swapchain coordination to the chart runtime subsystem.
Getting Started
- Install via
dotnet add package VelloSharp.ChartRuntime.Windows
. - Add
using VelloSharp.ChartRuntime.Windows;
in Windows-targeted projects that host real-time charts. - Configure the runtime to use the dispatcher, composition thread, or swapchain helpers provided by this package.
- Pair it with
VelloSharp.ChartRuntime
for platform-agnostic logic and withVelloSharp.Integration.Wpf
or.WinForms
for UI delivery.
Usage Example
using System.Windows.Forms;
using VelloSharp.ChartRuntime.Windows.WinForms;
using var control = new Control();
using var tickSource = new WinFormsTickSource(control);
Next Steps
- Review the API reference for Windows-specific scheduler implementations and interop bridges.
- Validate behaviour under high-frequency updates and multiple monitor setups to ensure smooth playback.