Steema Issues Database

Note: 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.



Bug 1312

Summary: PDF export broken.
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: ExportingAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2015-09-18 11:15:10 EDT
Use the following code to reproduce:

    Bar series;
    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;
      series = new Bar(tChart1.Chart);
      series.FillSampleValues();
    }


    private void button7_Click_1(object sender, EventArgs e)
    {
      tChart1.Export.Image.PDF.Save(@"D:\tmp\chart1.pdf");
    }