Search found 4 matches
- Fri Nov 11, 2005 4:50 pm
- Forum: VCL
- Topic: AntiAlias feature should be improved
- Replies: 1
- Views: 4191
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...
- Fri Nov 11, 2005 4:04 pm
- Forum: .NET
- Topic: setting arrow pointer color for marks
- Replies: 3
- Views: 5716
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.
Regards,
Marc Meumann
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;
Marc Meumann
- Wed Nov 09, 2005 12:01 am
- Forum: .NET
- Topic: Serialize Custom Series Into .TEN File?
- Replies: 4
- Views: 8100
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...
- Tue Nov 08, 2005 11:18 pm
- Forum: VCL
- Topic: Printing a chart into a DC
- Replies: 1
- Views: 3872
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,...