添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Description

The 3D ChartView element is rendered fragmented on devices with specific video and processor models and drivers.

Solution

No stable solution is provided for this issue. The issue may come from the video device or the related driver. The result is that the machine cannot render the information coming from the WPF 3D rendering engine properly. You may notice glitches or a fragmented image.

Fragmented chart visualization

Possible solution is to update the drivers of the video card. Additional to this, try disabling the hardware acceleration in WPF.

public partial class MainWindow : Window 
{ 
    public MainWindow() 
    { 
        InitializeComponent(); 
    } 
 
    protected override void OnSourceInitialized(EventArgs e) 
    { 
        var hwnd = PresentationSource.FromVisual(this) as HwndSource; 
        if (hwnd != null) 
        { 
            hwnd.CompositionTarget.RenderMode = RenderMode.SoftwareOnly; 
        } 
        base.OnSourceInitialized(e); 
    } 
} 

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.