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 - SVG export broken
Summary: SVG export broken
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Exporting (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-12-09 05:12 EST by christopher ireland
Modified: 2017-02-02 06:02 EST (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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");
    }