Hello,
I am using a TChart component in a C++ Builder 2009 project. The chart has a about 10 series in it. A couple horizontal line series, a few shape series, and a couple arrow series. I also do a small amount of straight drawing to the canvas. Please see the attached files to see the bugs?/differences I am getting. Here are the differences I am seeing:
1) The print loses the transparency. This isn't a huge problem, but it doesn't do it.
2) The arrow series base marks are nowhere near the arrow line.
3) No dashed or dotted lines.
Are these options I am not setting correctly, or bugs?
Thank You,
John
PartialPrint issues...
PartialPrint issues...
- Attachments
-
- on_print.jpg (82.74 KiB) Viewed 2470 times
-
- on_form.jpg (57.7 KiB) Viewed 2470 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: PartialPrint issues...
Hi John,
1. Transparency is not supported on printing. It's on our wish list to be considered for further releases. In the meantime you can do what Pep suggested here.
2. I'm not sure about which is the exact problem here. Could you please give us some more details?
3. This issue is mentioned in the Printing Better article I posted here.
Thanks in advance.
1. Transparency is not supported on printing. It's on our wish list to be considered for further releases. In the meantime you can do what Pep suggested here.
2. I'm not sure about which is the exact problem here. Could you please give us some more details?
3. This issue is mentioned in the Printing Better article I posted here.
Thanks in advance.
Best Regards,
Narcís Calvet / 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: PartialPrint issues...
Thanks for the info and links on 1 and 3. As for 2, please look at the black dots on the top chart. On the bottom chart they are attached to the back end of the arrows. It looks like printing issues with the Arrow Chart series.Narcís wrote:Hi John,
1. Transparency is not supported on printing. It's on our wish list to be considered for further releases. In the meantime you can do what Pep suggested here.
2. I'm not sure about which is the exact problem here. Could you please give us some more details?
3. This issue is mentioned in the Printing Better article I posted here.
Thanks in advance.
Thanks,
John
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: PartialPrint issues...
Hi John,
Thanks for the information. I'm afraid this is a generic issue with marks arrow and callout as can also be reproduced printing the chart generated by the code below:
So I have added the defect to the bug list (TV52014688) to be fixed for future releases.
Thanks for the information. I'm afraid this is a generic issue with marks arrow and callout as can also be reproduced printing the chart generated by the code below:
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
var Series1: TLineSeries;
begin
Series1:=TLineSeries.Create(Self);
Chart1.AddSeries(Series1);
Series1.FillSampleValues;
Series1.Marks.Visible:=True;
Series1.Marks.Callout.Visible:=True;
Series1.Marks.Arrow.Visible:=True;
Series1.Marks.Arrow.Color:=clRed;
Series1.Marks.ArrowLength:=30;
end;
Best Regards,
Narcís Calvet / 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 |