public SingleGraphViewModel(SingleGraphWindow sg, string identifier) { lineSeries = new GLineSeries { Values = new GearedValues <double> { }.WithQuality(Quality.Medium), PointGeometry = null, Fill = Brushes.Transparent }; Graph graph = new Graph(this, sg, identifier, lineSeries); this.identifier = identifier; this.singleGraph = sg; }
private void GotoYaw(object sender, RoutedEventArgs e) { SingleGraphWindow graphWindow = new SingleGraphWindow(Topic.YawTopic); graphWindow.Show(); }