DevExpress 图表问题
是否可以在 DevExpress Chart 控件中创建图表(如屏幕截图所示)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 DevExpress Chart 控件中创建图表(如屏幕截图所示)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我已经开发了类似的东西。我了解到最好使用 XtraGrid 而不是图表作为模式矩阵。我使用 CustomCell 绘图功能根据单元格中的值绘制彩色条。
I have developed something similiar, already. I learned that it is better to use XtraGrid instead of the chart, as pattern matrix. The I used CustomCell drawing feature to draw colored bars according values in the cell.
如果您要渲染超过 100 个数据点,请避免使用 DevExpress 图表。至少在 v14 和 v15 中,与大多数东西相比,图表控件非常非常慢。每次重绘时,您都必须等待几秒钟才能重绘。
这并不影响 DevExpress 其余部分的出色表现(它是我选择的其他所有库)。
Avoid DevExpress charts if you are rendering anything more than 100 data points. At least in v14 and v15, the charting controls are very, very slow compared to most things out there. Every time it redraws, you have to wait seconds for it to redraw.
This does not detract from how awesome the rest of DevExpress is (its my library of choice for everything else).
我认为不同的组件(数据透视表)是更合适的解决方案。
例如,DevExpress PivotGridControl 支持就地编辑器,例如进度栏(请参阅 以下示例)。
此外,您可以通过处理 CustomCellDisplayText 来隐藏零值的单元格事件并将 e.DisplayText 属性设置为空字符串。
I think a different component (Pivot Table) is a more suitable solution here.
For instance, DevExpress PivotGridControl supports in-place editors such as Progress Bar (see the following example).
In addition, you can hide cells with zero values by handling the CustomCellDisplayText event and setting the e.DisplayText property to an empty string.
简单的答案是肯定的,这是可能的
The simple answer is YES, it is possible