VelloSharp.Charting
VelloSharp.Charting
delivers the reusable chart components, layouts, and interaction layers built on top of the chart engine.
Getting Started
- Install via
dotnet add package VelloSharp.Charting
. - Import
using VelloSharp.Charting;
when composing chart visuals. - Instantiate chart views or view-model helpers from this package, bind them to
VelloSharp.ChartData
sources, and host them inside your UI framework. - Customize axes, themes, crosshairs, and interactivity by configuring the options exposed on the chart controls.
Usage Example
using VelloSharp.Charting.Layout;
var orientation = AxisOrientation.Left;
Console.WriteLine($"Axis orientation: {orientation}");
Next Steps
- Review the API reference for the control hierarchy, command surfaces, and customization points.
- Pair with
VelloSharp.Charting.Avalonia
,.WinForms
, or.Wpf
to deliver charts on each platform.