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 1713

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

Description christopher ireland 2016-12-09 05:12:22 EST
Code to reproduce:

    private void InitializeChart()
    {
      double[] xArray = new double[5] { 1, 2, 3, 4, 5 };
      double[] yArray = new double[5] { 1.5, 2.4, 3.8, 4.9, 5.6 };

      FastLine fsFastLine = new FastLine(tChart1.Chart);
      fsFastLine.Add(xArray, yArray);
    }

    private void button4_Click(object sender, EventArgs e)
    {
      tChart1.Export.Image.SVG.Save("D:/tmp/Charts/chart_1.svg");
    }