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 - World series does not export to JScript
Summary: World series does not export to JScript
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Exporting (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-07-20 07:55 EDT by christopher ireland
Modified: 2018-08-03 06:09 EDT (History)
0 users

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


Attachments
screenshot (21.18 KB, image/png)
2018-07-20 07:55 EDT, christopher ireland
Details

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