Page 1 of 1

Customize ExportEditor

Posted: Thu Oct 10, 2013 9:45 pm
by 15666411
I'm trying to customize the ExportEditor before displaying it, but nothing I change in DataFormat seems to have any effect on the resultant dialog. Here's what I'm trying:

Code: Select all

Steema::TeeChart::Editors::Export::ExportEditor ^ed = gcnew Steema::TeeChart::Editors::Export::ExportEditor(tChart1->Chart);
ed->Text = "Export Plot";
ed->DataFormat->IncludeSeriesTitle = true;
ed->DataFormat->TextLineSeparator = " End of Line\n";
ed->ShowDialog();
So I expected that the Series Title checkbox would be checked, and when I exported to a text file I expected to see " End of Line" at the end of each line. But neither happens. How do I get my customizations to take effect?

Incidentally, setting ed->Text did work as expected.

I'm using C++/CLI .NET 4.0.

Thank you,
Matt

Re: Customize ExportEditor

Posted: Fri Oct 11, 2013 8:44 am
by 10050769
Hello MattG,

Could you please try to send us your complete project because we can reproduce your problem exactly here?

Thanks,

Re: Customize ExportEditor

Posted: Fri Oct 11, 2013 3:13 pm
by 15666411
Hi Sandra,

The attached test project exhibits the behavior. When you click the button to open the ExportEditor, it does not reflect any of the customizations defined before showing it, except ed->Text. For example, if you output the data as a text file, I would expect each line to terminate with " End of Line\n".

Matt

Re: Customize ExportEditor

Posted: Mon Oct 14, 2013 3:05 pm
by 10050769
Hello Matt,

Thanks for your project, I can reproduce your problem and I inform your request is in bug list report with number (TF02016738) and we try to fix it to next maintenance releases of TeeChartFor.Net. I recommend you to be aware at this forum, our RSS news feed, twitter and facebook accounts for new release announcements and what's implemented on them.

Re: Customize ExportEditor

Posted: Mon Oct 14, 2013 10:51 pm
by 15666411
Thank you Sandra. Can you give me an estimated date for the bug fix?

Thanks,

Re: Customize ExportEditor

Posted: Tue Oct 15, 2013 9:48 am
by 10050769
Hello Matt,

Good news, I inform you that the bug number TF02016738 is already fixed for next maintenance release of TeeChartFor.net.

Thanks,

Re: Customize ExportEditor

Posted: Fri Jan 17, 2014 5:34 pm
by 15666411
Thanks Sandra, this appears to be working now.

Matt