1

我有多个具有不同开始和结束位置以及最小/最大值的 LinearAxis 元素。如何在保留标题(例如:第 1 天、第 2 天等)的同时隐藏这些轴的值编号(例如,0、100、200 等)

例如,我想隐藏数字 0、100 和 200 在此处输入图像描述

4

2 回答 2

3

如果标签 0、100、200 属于一个轴,而文本“Day One”,......则属于另一个轴,您可以像这样将第一个轴的标签颜色设置为透明

axis.TextColor = OxyColors.Transparent;

希望这可以帮助。

于 2015-03-06T20:20:27.243 回答
1

如果 XAML 使用这个

<oxy:Plot.Axes>
    <oxy:LinearAxis Position="Left" TextColor = OxyColors.Transparent/>
</oxy:Plot.Axes>

如果代码

// Create a plot model
PlotModel = new PlotModel { Title = "Updating by task running on the UI thread" };
// Add the axes, note that MinimumPadding and AbsoluteMinimum should be set on the value axis.
PlotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Bottom, TextColor = OxyColors.Transparent});
于 2015-08-22T14:44:43.847 回答