-
|
I've added a graph in my window, that in XAML is: <WpfPlot Grid.Row="1" Width="600" HorizontalAlignment="Left" Name="GraphA" Grid.ColumnSpan="2" />Then I add in my MainWindow() code: double[] testGraph = new double[] { 100, 200, 300, 400 };
GraphA.Plot.AddSignal( testGraph );
GraphA.Plot.Render();I thought this was an easy enough start... what am I missing? |
Beta Was this translation helpful? Give feedback.
Answered by
swharden
Sep 13, 2021
Replies: 1 comment 1 reply
-
|
I see how this is confusing... I'll try to implement a more descriptive warning message (#1264) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
swharden
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

GraphA.Render()notGraphA.Plot.Render()👍I see how this is confusing... I'll try to implement a more descriptive warning message (#1264)