多Series显示Tracker的时候如何显示最上面的那个 #2140
wangguangbiaoq
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
public MainWindow()
{
InitializeComponent();
PlotModel = CreateSeries();
DataContext = this;
}
PlotModel CreateSeries()
{
PlotModel model = new PlotModel();
CategoryAxis categoryAxis = new CategoryAxis();
categoryAxis.Key = "x";
categoryAxis.Position = AxisPosition.Bottom;
}
Beta Was this translation helpful? Give feedback.
All reactions