需要图表工具,与 ASP.NET 或 Web 表单兼容

发布于 2024-11-06 14:46:25 字数 1539 浏览 2 评论 0原文

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

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

发布评论

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

评论(3

作业与我同在 2024-11-13 14:46:25

如果这是 ASP.NET,您应该能够编写自己的 Web 控件,使用表行和列来呈现它。您可以使用 CSS 设置背景颜色并使用图像作为标记,可以是菱形、圆形等作为列的内容

示例:您的 Web 控件将呈现如下所示的内容:

<table>
..........
<tr>
............
 <td class="high-risk"><img src=".\image\circlemarker.jpg"></td>
 .............
</tr>
</table>

If this is ASP.NET, you should be able to just write your own webcontrol that render this using table row and column. You can use CSS to set the background color and use image for your marker either it is diamond, circle or etc as the content to the column

Example: your webcontrol will render to something like this:

<table>
..........
<tr>
............
 <td class="high-risk"><img src=".\image\circlemarker.jpg"></td>
 .............
</tr>
</table>
如果没有你 2024-11-13 14:46:25

您可以尝试使用 MS 图表控件

you can try out with the MS chart controls.

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