我想在 DataVisualization.Charting.Chart 的背景上绘制一个 Image 。由于 ChartArea.BackImage 属性只接受图像的路径,因此您不能将此值设置为运行时图像。

为此,我将图表的 PrePaint Event 用于绘制图表图形(我删除了部分代码并将图像替换为蓝色矩形):

private void chart1_PrePaint(object sender, System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs e)
{
    double xMax = e.ChartGraphics.GetPositionFromAxis("ChartArea1", AxisName.X, chart1.ChartAreas[0].AxisX.Maximum);
    double xMin = e.ChartGraphics.GetPositionFromAxis("ChartArea1", AxisName.X, chart1.ChartAreas[0].AxisX.Minimum);
    double yMax = e.ChartGraphics.GetPositionFromAxis("ChartArea1", AxisName.Y, chart1.ChartAreas[0].AxisY.Minimum);
    double yMin = e.ChartGraphics.GetPositionFromAxis("ChartArea1", AxisName.Y, chart1.ChartAreas[0].AxisY.Maximum);

    double width = xMax-xMin;
    double heigth = yMax- yMin;

    RectangleF myRect = new RectangleF((float)xMin,(float)yMin,(float)width,(float)heigth);
    myRect = e.ChartGraphics.GetAbsoluteRectangle(myRect);

    e.ChartGraphics.Graphics.FillRectangle(new SolidBrush(Color.LightBlue), myRect);
}

问题是,这样图表的网格会被覆盖(见左图)。但我希望网格可见(见左图)。有任何想法吗?

c# - 在不覆盖网格的情况下绘制 Winform 图表的背景-LMLPHP

最佳答案

由于 ChartArea.BackImage 属性只接受图像的路径,因此您不能将此值设置为运行时图像。

实际上你 可以通过使用晦涩的 NamedImage 类来 :

// here you can use any image..
Bitmap bmp = ... insert your image creation code!

// create a named image from it
NamedImage ni = new NamedImage("test", bmp);

// add it to the chart's collection of images
chart1.Images.Add(ni);

// now we can use it at any place we seemingly can only use a path:
chart1.BackImage = "test";

同样的技巧也适用于 DataPoint.BackImage !

性能是另一个问题,但它应该可以随时写入磁盘。

关于c# - 在不覆盖网格的情况下绘制 Winform 图表的背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35639069/

10-17 02:35