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 - SubChart tool not working
Summary: SubChart tool not working
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Android (show other bugs)
Version: unspecified
Hardware: Phone Android
: High major
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks: 80
  Show dependency treegraph
 
Reported: 2013-11-07 10:30 EST by narcís calvet
Modified: 2016-11-30 03:55 EST (History)
3 users (show)

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 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();