Where is the C# export steema TeeChart modal dialog window for WPF -


i've trying locate available tchart export dialog window api in c# wpf. i've tried accessing steema.teechart.wpf.editors class available aboutbox. can provide details on can gain access predefined window if there one? in c , forms, bring export dialog window follows:

#include <teexport.hpp>  tteeexportform *tmp=new tteeexportform(this); try {     tmp->exportpanel=chart1;     tmp->showmodal(); } __finally {     delete tmp; } 

hence i'm trying find c# equivalent if exists.

robert

it doesn't exist. teechart editors not supported in teechart.wpf.dll. should export charts @ run-time explained in tutorial 12. tutorials can found @ teechart's program group.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -