如何在 MS Chart 或其他 .Net 图表组件中使用颜色图绘制图像?
如何以编程方式创建带有颜色图的图像,如下图所示?每个矩形中的颜色不同,以根据颜色映射呈现不同的值。
尝试用 MS Chart 来做,但没有满意的结果。可以使用点、堆叠柱、矩形注释进行创建。但在渲染数千列时,所有这些都遇到了性能问题。
如何使用 MS 图表或其他可用于 .Net 的图表组件来渲染它?
How to programatically create image with colormap like the picture below? Color are different in each rectangle to present different value based on color-mapping.
Tried to do it with MS Chart, but no satisfied results. Can manage to create with Point, Stacked Colomn, rectangle annotation. But all got performance issue when rendering thousands of columns.
How to render it with MS chart or other chart components available for .Net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过更多实验,我没有找到使用现有 MS Chart 类型可视化彩色图像的有效方法。我最终用图形位图实现图像显示,然后将位图显示为 MS Chart 上的图像,以克服性能问题。
After more experiments, I did not find efficient way to visualize color image with existing MS Chart types. I finally implement image display with Graphics Bitmap, then display Bitmap as image on MS Chart, to overcome performance issue.