Code: Select all
using Steema.TeeChart.Maui;
using Steema.TeeChart.Styles;
namespace Project;
#if DEBUG
public sealed class DebugTChart : ContentPage
{
private readonly TChart _tChart;
private readonly Line _line;
public DebugTChart() : base()
{
Content = _tChart = new TChart();
_line = new Line( _tChart.Chart );
_tChart.Chart.Series.Add( _line );
}
protected override void OnAppearing() { _line.FillSampleValues(); }
}
#endif