S#.Charting.Interfaces More info on web site https://stocksharp.com/store/
$ dotnet add package StockSharp.Charting.InterfacesCharting.Interfaces contains a set of interface definitions and helper classes used for building and extending chart components within the StockSharp trading platform. These interfaces abstract the visualization layer so that different charting implementations can share a common API.
IChart, IChartArea, IChartAxis, and IChartElement that describe charts, axes, and individual plot elements.ChartCandleDrawStyles, ChartAnnotationTypes, and ChartAxisType).DummyChartBuilder implementation that produces simple placeholder chart parts. This is useful for testing or scenarios where a lightweight chart implementation is required.ChartingInterfacesExtensions that simplify creation of chart areas and elements, as well as drawing data on a chart.IPersistable so that chart layouts can be saved and restored.The library provides only interfaces and helper types, so it can be referenced from custom chart implementations or from other parts of StockSharp that interact with charts. Typical usage involves obtaining an IChartBuilder instance, creating areas and elements, and drawing data through IChart or IThemeableChart methods. See the StockSharp documentation for examples of integrating chart components with trading strategies.
Detailed documentation for StockSharp, including charting APIs, is available at https://doc.stocksharp.com.