3 instantiations of InstrumentViewModel
Aspire.Dashboard (1)
Components\Controls\Chart\ChartContainer.razor.cs (1)
21private readonly InstrumentViewModel _instrumentViewModel = new InstrumentViewModel();
Aspire.Dashboard.Components.Tests (2)
Controls\PlotlyChartTests.cs (2)
28var model = new InstrumentViewModel(); 71var model = new InstrumentViewModel();
12 references to InstrumentViewModel
Aspire.Dashboard (10)
Components\Controls\Chart\ChartContainer.razor.cs (1)
21private readonly InstrumentViewModel _instrumentViewModel = new InstrumentViewModel();
Components\Controls\Chart\ChartFilters.razor.cs (4)
16public required InstrumentViewModel InstrumentViewModel { get; set; } 25InstrumentViewModel.DataUpdateSubscriptions.Add(() => 27ShowCounts = InstrumentViewModel.ShowCount; 34InstrumentViewModel.ShowCount = ShowCounts;
Components\Controls\Chart\MetricTable.razor.cs (5)
51if (!Equals(_instrument?.Name, InstrumentViewModel.Instrument?.Name) || _showCount != InstrumentViewModel.ShowCount) 58_instrument = InstrumentViewModel.Instrument; 59_showCount = InstrumentViewModel.ShowCount; 99Instrument = InstrumentViewModel.Instrument!
Aspire.Dashboard.Components.Tests (2)
Controls\PlotlyChartTests.cs (2)
28var model = new InstrumentViewModel(); 71var model = new InstrumentViewModel();