1 write to Instrument
Aspire.Dashboard (1)
Model\InstrumentViewModel.cs (1)
20Instrument = instrument;
11 references to Instrument
Aspire.Dashboard (11)
Components\Controls\Chart\ChartBase.cs (7)
74InstrumentViewModel.Instrument is null || 89if (_renderedInstrument is null || _renderedInstrument != InstrumentViewModel.Instrument.GetKey() || 95_renderedInstrument = InstrumentViewModel.Instrument.GetKey(); 198return $"<b>{HttpUtility.HtmlEncode(InstrumentViewModel.Instrument?.Name)}</b><br />{HttpUtility.HtmlEncode(name)}: {FormatHelpers.FormatNumberWithOptionalDecimalPlaces(yValue, maxDecimalPlaces: 6, CultureInfo.CurrentCulture)}<br />Time: {FormatHelpers.FormatTime(TimeProvider, TimeProvider.ToLocal(xValue))}"; 486Debug.Assert(InstrumentViewModel.Instrument != null); 489? GetDisplayedUnit(InstrumentViewModel.Instrument) 495if (InstrumentViewModel.Instrument?.Type != OtlpInstrumentType.Histogram || InstrumentViewModel.ShowCount)
Components\Controls\Chart\MetricTable.razor.cs (3)
57if (!Equals(_instrument?.Name, InstrumentViewModel.Instrument?.Name) || _showCount != InstrumentViewModel.ShowCount) 64_instrument = InstrumentViewModel.Instrument; 105Instrument = InstrumentViewModel.Instrument!
Components\Controls\Chart\PlotlyChart.razor.cs (1)
47if (InstrumentViewModel?.Instrument is { } instrument)