Completed
Last Updated: 02 Jun 2016 14:10 by ADMIN
ADMIN
Dimitar
Created on: 31 May 2016 06:19
Category: RadialGauge, LinearGauge, BulletGraph
Type: Bug Report
1
FIX. RadLinearGauge - some elements are not painted when the control is inside scrollable panel.
To reproduce:
- Add RadLienarGauge to a scrollable panel.
- Start the application and scroll.
- You will notice that some elements are not painted correctly.

Workaround:
- Override the IsInVisibleClipBounds in each used element:

public class MyTicks : Telerik.WinControls.UI.Gauges.LinearGaugeTicks
{
    protected override bool IsInVisibleClipBounds(Rectangle clipRectangle)
    {
        return true;
    }
}
0 comments