Two LineSeries with the same Y Axis in WPF Toolkit charts
问题 I want to do the following with the WPF toolkit charts: I have two line series that should use the same y axis (i.e I want them both to be on the same scale). I could give each of them the same axis definition so they would overlap (and then have one of them with collapsed visibility), but that is not my best choice. This is the solution I'm talking about: <charts:LineSeries Name="ExternalMeasureSeries" IndependentValueBinding="{Binding Time}" DependentValueBinding="{Binding ExternalMeasure}"