when I create sub chart they always use the ugly gdi+ canvas, with the anti alias making the lines fat and blurry. Can I turn off the anti alias, or reset the sub chart to the gdi?
The axis line go from a clear black single pixel wide line to about 3 pixel wide grey blur.
I have set the option for new charts to be GDI - but it does not seem to effect the sub charts
Thanks for any help you can give
Richard
GDI+, sub charts and blurry lines
Re: GDI+, sub charts and blurry lines
Hi Richard,
That's strange. By default, with GDI+ selected (as per default) as "Render" option at the "New Chart" tab in the "Options..." dialog opened from the contextual menu at design time: I get GDI+ Charts, both at the parent chart and at the subchart: However, if I open again the options dialog and select GDI as "Render" option at the "New Chart" tab, still at design time: And I drop another chart to the same form, I see GDI in both the chart and the subchart:
That's strange. By default, with GDI+ selected (as per default) as "Render" option at the "New Chart" tab in the "Options..." dialog opened from the contextual menu at design time: I get GDI+ Charts, both at the parent chart and at the subchart: However, if I open again the options dialog and select GDI as "Render" option at the "New Chart" tab, still at design time: And I drop another chart to the same form, I see GDI in both the chart and the subchart:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: GDI+, sub charts and blurry lines
why is the GDI+ rendering so poor? it is always blurry - even if I take of the anti alias - thing like the points are blurry as are the tick marks - is this something in your control? Can I disable GDI+ completely?
I have a large number of small points to show - it looks poor even on my 23 inch monitor and even worse on a laptop!
I have a large number of small points to show - it looks poor even on my 23 inch monitor and even worse on a laptop!
Re: GDI+, sub charts and blurry lines
Hi Richard,
Alternatively, you can force it at runtime with:
Antialias has some controversy. Some may find it give smoother lines and curves, while some may find it's blurry.Richard wrote:why is the GDI+ rendering so poor? it is always blurry - even if I take of the anti alias - thing like the points are blurry as are the tick marks -
You should be able to go back to GDI as mentioned above.Richard wrote: is this something in your control? Can I disable GDI+ completely?
Alternatively, you can force it at runtime with:
Code: Select all
uses Series, TeCanvas;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.Canvas:=TTeeCanvas3D.Create;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |