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 87

Summary: SubChart tool not working
Product: .NET TeeChart Reporter: narcís calvet <narcis>
Component: AndroidAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: major CC: chris, narcis, yeray
Priority: High    
Version: unspecified   
Target Milestone: ---   
Hardware: Phone   
OS: Android   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Bug Depends on:    
Bug Blocks: 80    

Description narcís calvet 2013-11-07 10:30:41 EST
Code below ends unexpectedly:
tChart1.Clear();
 Steema.TeeChart.Tools.SubChartTool subChartTool1;
 Steema.TeeChart.TChart chart;
 Steema.TeeChart.Styles.Line line1;

 tChart1.Series.Add(line1 = new Steema.TeeChart.Styles.Line());
 tChart1.Tools.Add(subChartTool1 = new Steema.TeeChart.Tools.SubChartTool());
 chart = subChartTool1.Charts.AddChart("Chart0");
 chart.Series.Add(new Steema.TeeChart.Styles.Bar()).FillSampleValues();
 line1.FillSampleValues();