VelloSharp.ChartEngine
VelloSharp.ChartEngine
orchestrates animated chart rendering by combining data feeds, layouts, and GPU-accelerated drawing commands.
Getting Started
- Install with
dotnet add package VelloSharp.ChartEngine
. - Add
using VelloSharp.ChartEngine;
to projects where you compose chart visuals. - Create an engine instance using the builders provided by the package, wire in your
VelloSharp.ChartData
sources, and configure axis/series metadata. - Connect the engine output to a platform-specific presentation layer such as Avalonia, WPF, or WinForms using the corresponding charting package.
Usage Example
using VelloSharp.ChartEngine;
var profile = ChartAnimationProfile.Default with { ReducedMotionEnabled = true };
var color = ChartColor.FromRgb(34, 139, 230);
Next Steps
- Browse the API reference for engine configuration options, animation settings, and rendering hooks.
- Explore the samples to learn how to drive the engine from reactive data feeds or background workers.