VelloSharp.Charting.Wpf
VelloSharp.Charting.Wpf
brings the charting control suite to Windows Presentation Foundation with a rendering pipeline powered by Vello.
Getting Started
- Install the package:
dotnet add package VelloSharp.Charting.Wpf
. - Add
using VelloSharp.Charting.Wpf;
in your WPF project, then reference the XML namespace in XAML. - Drop the chart controls into your XAML layouts and bind them to
VelloSharp.ChartData
view models. - Combine with
VelloSharp.Integration.Wpf
to manage swapchains, DPI scaling, and rendering invalidation.
Usage Example
using VelloSharp.Charting.Wpf;
var control = new ChartView();
Next Steps
- Review the API reference to see the list of controls, behaviors, and styling options.
- Explore the WPF samples for guidance on MVVM bindings and high-frequency data updates.