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 2065

Summary: World series does not export to JScript
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: ExportingAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot

Description christopher ireland 2018-07-20 07:55:23 EDT
Created attachment 840 [details]
screenshot

see attached screenshot, taken using this code:

private void button1_Click(object sender, EventArgs e)
{
	tChart1.Series.Add(typeof(World));
	tChart1[0].FillSampleValues();
	string path = @"C:\tmp\chart2.htm";
	tChart1.Export.Image.JScript.Save(path);
	Process.Start(path);
}

this should work, as TeeChart.js can represent a world series.