![]() | Steema Issues DatabaseNote: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;otherwise you can use StackOverflow. Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy. |
| Summary: | TabOrder not found when exporting a TChart and Importing to a TQRChart | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Export | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED NOTABUG | ||
| Severity: | trivial | CC: | david |
| Priority: | Lowest | ||
| Version: | 150120 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
yeray alonso
2015-03-02 06:59:44 EST
TabOrder cannot be made published in TQRChart or TQRDBChart. For this property (and also any other properties not supported by QR controls), using LoadChartFromStreamCheck solves the problem. function TForm1.SkipErrors(const Message: string): Boolean; begin result:=True; // <-- True means: continue reading, ignore the exception(s) end; ... LoadChartFromStreamCheck(TCustomDBChart(QRDBChart1), tmpStream, SkipErrors); "SkipErrors" is a local function that returns True to avoid the exception and continue loading the chart. Note: Running inside the IDE with debugging will still stop the application when the exception happens, pressing F9 (run) again will continue as expected. Running "without debugging" will not stop at all. |