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