作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有一些列和网格线的图表控件。我想在图表上的特定位置添加红色 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/
我有一个带有一些列和网格线的图表控件。我想在图表上的特定位置添加红色 StripLine 以表明这是可接受的水平(或其他水平)。 问题是带状线没有显示,因为网格线隐藏了它!带状线和网格线一样只有 1
我是一名优秀的程序员,十分优秀!