Question

I've trying to locate the available tchart export dialog window API in C# for WPF. I've tried accessing Steema.TeeChart.WPF.Editors but the only class available is AboutBox. Can someone provide details on where I can gain access to this predefined window if there is one? In C and Forms, to bring up the export dialog window is as follows:

#include <Teexport.hpp>

TTeeExportForm *tmp=new TTeeExportForm(this);
try
{
    tmp->ExportPanel=Chart1;
    tmp->ShowModal();
}
__finally
{
    delete tmp;
}

Hence I'm trying to find the C# equivalent if it exists.

Robert

Was it helpful?

Solution

It doesn't exist. TeeChart editors are not supported in TeeChart.WPF.dll. You should export charts at run-time as explained in tutorial 12. Tutorials can be found at TeeChart's program group.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top