在 OxyPlot 中设置 X 轴的 Y 位置
Set the Y position of the X axis in OxyPlot
我正在使用优秀的 OxyPlot 库绘制一个基本的 LineSeries :
我找不到如何将 X 轴设置为以 0 Y 值为中心,而不是在 PlotArea 的底部。
我的代码隐藏如下:
Model = new PlotModel();
LineSeries RightingLever = new LineSeries();
RightingLever.Title = "Righting Lever";
// adding points
Model.Series.Add(RightingLever);
PlotView.Model = Model;
我正在寻找 PositionAtZeroCrossing
属性 的 Axis
class。
foreach (var axis in Model.Axes)
{
axis.PositionAtZeroCrossing = true;
axis.AxislineStyle = LineStyle.Automatic;
}
我正在使用优秀的 OxyPlot 库绘制一个基本的 LineSeries :
我的代码隐藏如下:
Model = new PlotModel();
LineSeries RightingLever = new LineSeries();
RightingLever.Title = "Righting Lever";
// adding points
Model.Series.Add(RightingLever);
PlotView.Model = Model;
我正在寻找 PositionAtZeroCrossing
属性 的 Axis
class。
foreach (var axis in Model.Axes)
{
axis.PositionAtZeroCrossing = true;
axis.AxislineStyle = LineStyle.Automatic;
}