gpt4 book ai didi

ASP.NET 图表 GridLine 上的 StripLine

转载 作者:行者123 更新时间:2023-12-02 15:13:28 25 4
gpt4 key购买 nike

我有一个带有一些列和网格线的图表控件。我想在图表上的特定位置添加红色 StripLine 以表明这是可接受的水平(或其他水平)。

问题是带状线没有显示,因为网格线隐藏了它!带状线和网格线一样只有 1 磅宽度。

有没有办法可以在网格线上方而不是在网格线下方绘制带状线?

谢谢

最佳答案

添加以下代码以查看 y 轴 5 和 9.5 位置处的带状线。我相信它会起作用

    // Instantiate new strip line
StripLine stripLine1 = new StripLine();
stripLine1.StripWidth = 0;
stripLine1.BorderColor = System.Drawing.Color.RoyalBlue;
stripLine1.BorderWidth = 3;
stripLine1.Interval = 5;

// Consider adding transparency so that the strip lines are lighter
stripLine1.BackColor = System.Drawing.Color.RosyBrown;

stripLine1.BackSecondaryColor = System.Drawing.Color.Purple;
stripLine1.BackGradientStyle = GradientStyle.LeftRight;

// Add the strip line to the chart
Chartname.ChartAreas[0].AxisY.StripLines.Add(stripLine1);

StripLine stripLine2 = new StripLine();
stripLine2.StripWidth = 0;
stripLine2.BorderColor = System.Drawing.Color.RoyalBlue;
stripLine2.BorderWidth = 3;
stripLine2.Interval = 9.5;

// Consider adding transparency so that the strip lines are lighter
stripLine2.BackColor = System.Drawing.Color.RosyBrown;

stripLine2.BackSecondaryColor = System.Drawing.Color.Purple;
stripLine2.BackGradientStyle = GradientStyle.LeftRight;

// Add the strip line to the chart
Chartname.ChartAreas[0].AxisY.StripLines.Add(stripLine2);

关于ASP.NET 图表 GridLine 上的 StripLine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8131778/

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