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 384 - [TF02013167] I want to draw a article parts list with an organizational chart. I h...
Summary: [TF02013167] I want to draw a article parts list with an organizational chart...
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-26 16:37 EDT by narcís calvet
Modified: 2013-11-20 11:26 EST (History)
0 users

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-20 11:26:47 EST
I want to draw a article parts list with an organizational chart. I have a problem when a node have to many childs. The childs disappear on the left and right side and I found nothing to scroll to the missing nodes.
Code to reproduce:
public Form1()
 {
 InitializeComponent();
 InitializeChart();
 }

 private void InitializeChart()
 {
 tChart1.Width = 600;
 Steema.TeeChart.Styles.OrgSeries org1 = new Steema.TeeChart.Styles.OrgSeries(tChart1.Chart);

 int i = org1.Add("Parent", -1);

 for (int j = 0; j < 10; j++)
 {
 org1.Add("Child node " + j.ToString(), i);
 }
 } [created:2008-06-26T15:37:24.000+01:00 reported by:narcis@steema.com reported in version:Build 3.5.3065.19160 (TeeChart for .NET)]