gpt4 book ai didi

c# - 如何防止氧图在一个轴上缩放?

转载 作者:行者123 更新时间:2023-12-02 20:16:30 24 4
gpt4 key购买 nike

开始时的图表:

enter image description here

放大后的图:

enter image description here

问题:如何保持图表的完整垂直数据可见,而不必上下平移来尝试查看它?

我想图表需要水平拉伸(stretch)才能做到这一点。我试过设置最小/最大范围来实现这一点,但它们似乎没有达到预期的效果。我在文档中找不到任何设置来仅禁用一个缩放轴。

最佳答案

在图形绘图模型中,添加所需的轴并禁用轴缩放:

var pm = new PlotModel { Title = "My Plot" };

//Define the x axis
DateTimeAxis xAxis = new DateTimeAxis();
xAxis.Position = AxisPosition.Bottom;

//Define the y axis
LinearAxis yAxis = new LinearAxis();
yAxis.Position = AxisPosition.Left;
//Disable the axis zoom
yAxis.IsZoomEnabled = false;

//Add the Axes to the graph
pm.Axes.Add(xAxis);
pm.Axes.Add(yAxis);

此外,如果您不想禁用缩放,则当您将光标放在一个轴上滚动鼠标滚轮时,缩放将仅应用于该轴。

关于c# - 如何防止氧图在一个轴上缩放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52269450/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com