Search found 4 matches

by Marc
Fri Nov 11, 2005 4:50 pm
Forum: VCL
Topic: AntiAlias feature should be improved
Replies: 1
Views: 4183

Hello Nik, As things currently stand it is unlikely that there will be a substantial near-term change to current anti-alias functionality in the VCL version of TeeChart. The Windows GDI used by the default TeeChart Canvas does not offer anti-alias support. GDI+ does offer anti-alias support. There i...
by Marc
Fri Nov 11, 2005 4:04 pm
Forum: .NET
Topic: setting arrow pointer color for marks
Replies: 3
Views: 5674

Hello Marconi,

Referring to the Pointer that marks the connection of the Mark Arrow to the Series you can set characteristics via the Callout properties:

eg.

Code: Select all

tChart1[0].Marks.Callout.Visible=true;
tChart1[0].Marks.Callout.Brush.Color=Color.Yellow;
Regards,
Marc Meumann
by Marc
Wed Nov 09, 2005 12:01 am
Forum: .NET
Topic: Serialize Custom Series Into .TEN File?
Replies: 4
Views: 8054

Hello Walt, A custom class, deriving from a TeeChart Series, could be constructed in the following way: namespace MyTest { public class MyLine : Line, Steema.TeeChart.Export.TemplateExport.ICustomSerialization { public double SomeFloat=12345.678; public string SomeString="Hello"; public MyLine(Steem...
by Marc
Tue Nov 08, 2005 11:18 pm
Forum: VCL
Topic: Printing a chart into a DC
Replies: 1
Views: 3868

Hello, Here's an example that prints a TeeChart to a Form using the Form handle: procedure TForm1.PrintToHandle(DC: HDC; Left, Top, Right, Bottom: Integer); var tmp:TCanvas; SaveIndex: Integer; begin tmp:=TCanvas.Create; SaveIndex:=SaveDC(DC); tmp.Handle:=DC; Chart1.PrintPartialCanvas(tmp,Rect(Left,...