我正在使用VisualStudio WebForm C#开发一个图表。 在图例部分中,它不能将指示符/图像/形状更改为破折号。 (可以使用excel轻松完成。有什么方法吗?
我想要的是: - - - - 收入平均值(想象一下是虚线图像) -------收入(想象一下是实线)
我最接近的是:
LegendItem item1 = new LegendItem();
item1.Color = Color.Black;
item1.Name = "Income Average";
item1.BackHatchStyle = ChartHatchStyle.DarkVertical;
// Adding it into chart legend
chart1.Legends[0].CustomItems.Add(item1);
需要建议谢谢。
答案 0 :(得分:0)
您可以使用item1.ImageStyle = LegendImageStyle.Line
创建实线
More info here
然而据我所知,没有“破折号”风格,但可以使用图像作为符号。因此,您可以尝试制作一个虚线和read this的小图像。
我希望它有所帮助。