lineseries

OxyPlot - How to remove Axes

末鹿安然 提交于 2020-04-30 07:43:05
问题 I would like to create an Oxyplot view without any axes visible. Could anyone tell me how to do so? To avoid missunderstandings, I never added any axes to the plotmodel. This code adds axes already. How to avoid that they are shown? C# plot = new PlotModel(); var ser = new LineSeries(); ser.Points.Add(new DataPoint(1, 1)); plot.Series.Add(ser); XAML <oxy:PlotView Background="Transparent" Model="{Binding plot}"</oxy:PlotView> 回答1: As stated in in oxyplot axes documentation: If no axes are

How to plot MULTIPLE LineSeries on an OxyPlot chart?

白昼怎懂夜的黑 提交于 2019-12-21 04:11:24
问题 I apologize for asking so many OxyPlot questions, but I seem to be really struggling with using the OxyPlot chart control. My project is in WPF format so I was originally using a hosted WINFORMS chart and that worked like a charm and did absolutely everything I needed it to until I needed to overlay a WPF element on top of the hosted winform chart. Due to the "AirSpace" issue, I was not able to see the WPF element that I put on top of the hosted chart no matter what I did. That is when I

How to plot MULTIPLE LineSeries on an OxyPlot chart?

蹲街弑〆低调 提交于 2019-12-03 12:27:46
I apologize for asking so many OxyPlot questions, but I seem to be really struggling with using the OxyPlot chart control. My project is in WPF format so I was originally using a hosted WINFORMS chart and that worked like a charm and did absolutely everything I needed it to until I needed to overlay a WPF element on top of the hosted winform chart. Due to the "AirSpace" issue, I was not able to see the WPF element that I put on top of the hosted chart no matter what I did. That is when I decided to go with OxyPlot, which is giving me quite a few headache's so far. Here is my [origional