using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.Input; using OxyPlot; using OxyPlot.Series; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Timers; using System.Windows; namespace GettingStarted.ViewModels { public partial class MainViewModel : ObservableObject { [ObservableProperty] private PlotModel _myModel; public MainViewModel() { MyModel = new PlotModel() { Title = "Getting Started" }; MyModel.Series.Add(new FunctionSeries(Math.Cos, 0, 10, 0.1, "cos(x)")); } } }