![]() | Steema Issues DatabaseNote: 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. |
| Summary: | an error with importing CircularGauge as template | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | Shinobu Nagai <nagai> |
| Component: | Exporting | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | enhancement | CC: | chris, sandra |
| Priority: | --- | ||
| Version: | TeeChart.NET 2014 4.1.2014.02060 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
Shinobu Nagai
2014-02-20 00:43:40 EST
The below code can help to reproduce the problem:
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
var ciculargauge = new Steema.TeeChart.Styles.CircularGauge(tChart1.Chart);
tChart1.Export.Template.Save(@"circulargauge.tee");
}
private void button1_Click(object sender, EventArgs e)
{
tChart1.Series.Clear();
tChart1.Import.Template.Load(@"circulargauge.tee");
}
This problem is not reproducible with the tip revision of our version control software, although I was able to reproduce it with the latest binary releases. I assume that changes I have made to CircularGauge have resolved the issue. |