如何在空的 MS Chart ChartArea 上绘制文本?

发布于 2024-08-10 19:11:45 字数 366 浏览 1 评论 0原文

我正在使用 Microsoft 的图表控件来绘制一些系列,但如果我没有数据,我想在绘图所在的区域显示“无数据系列”。

像这样:

类似图片 http://blogs.telerik.com/Libraries/MetaBlogLib/WindowsLiveWriter-CreatingabasicChart_D20D- image_thumb.sflb

我有预感它与手动在图像上绘制一些文本有关,但我不知道从哪里开始。有人吗?

I'm using Microsoft's Chart control to plot some series, but if I have no data, I want to display "No Data Series" on the area where the plot would be.

Like this:

similarpic http://blogs.telerik.com/Libraries/MetaBlogLib/WindowsLiveWriter-CreatingabasicChart_D20D-image_thumb.sflb

I have a hunch it has something to do with manually drawing some text onto the image, but I don't know where to start. Anyone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

背叛残局 2024-08-17 19:11:45

您可以创建一个后绘制事件处理程序,您可以在其中绘制您的东西:

mychart.PostPaint += new EventHandler<ChartPaintEventArgs>(PostPaintEventHandler);
...
static void PostPaintEventHandler(object sender, ChartPaintEventArgs e)
{
  //sender here is the chart... you can use that too.
  //use e.ChartGraphics object to paint something
  e.ChartGraphics.DrawString(...);
}

使用免费软件 ILSpy 来查看MSChart dll 内部。
Graphics.DrawString 方法有多个重载。使用最适合您的一种。

希望这有帮助。

You can create a post-paint event handler where you can paint your stuff:

mychart.PostPaint += new EventHandler<ChartPaintEventArgs>(PostPaintEventHandler);
...
static void PostPaintEventHandler(object sender, ChartPaintEventArgs e)
{
  //sender here is the chart... you can use that too.
  //use e.ChartGraphics object to paint something
  e.ChartGraphics.DrawString(...);
}

Use freeware ILSpy to look inside the MSChart dll.
There are several overloads of Graphics.DrawString method. Use the one which fits best for you.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文