We have tried to switch over from the winforms teechart to the WPF teecchart but we are having issues with anti-aliasing in all the WPF stuff. I've attached an example screen grab with the winforms on the left and WPF on the right. Both were produced with almost identical code (barring different color and dashline types). The chart is basically a bunch of tchart Box types. We have similar issues on our more regular chart types, especially in the fonts, but this is the most obvious example. Can you advise on how we could go about fixing this please? (I've run out of ideas after trying for a few days).
thanks,
K
WPF blurry compared to winforms
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: WPF blurry compared to winforms
Hello K,
Have you tried the UseGuideLines property? e.g.
Have you tried the UseGuideLines property? e.g.
Code: Select all
private void Button_Click(object sender, RoutedEventArgs e)
{
tChart1.Aspect.UseGuidelines = !tChart1.Aspect.UseGuidelines;
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: WPF blurry compared to winforms
That works brilliantly, thanks!