Page 1 of 1

Line labels and scroll in Organizational Chart

Posted: Thu Jun 26, 2008 1:05 pm
by 13046291
Hello,

I want to draw a article parts list with an organizational chart. So it would be great if i could label the lines of the child notes because I want to show there the amount of childs.

I also 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. The nodes are also missing when I export the chart as an image.

Posted: Thu Jun 26, 2008 1:40 pm
by narcis
Hi newcomer,
I want to draw a article parts list with an organizational chart. So it would be great if i could label the lines of the child notes because I want to show there the amount of childs.
I'm afraid this is not possible for now. I've added your request to our wish-list to be considered for inclusion in future releases.
I also 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. The nodes are also missing when I export the chart as an image.
I've also added this (TF02013167) to the bug list to be enhanced for next releases. Anyway, when exporting a chart to an image, by default, you'll get an image of what you see on the screen. However, you can specify image's width so that full series fit on it, for example:

Code: Select all

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

			tChart1.Export.Image.JPEG.Width = 1000;
			tChart1.Export.Image.JPEG.Save(@"c:\temp\org.jpg");
    }

Posted: Tue Feb 10, 2009 2:28 pm
by 13046291
Hello,

hows about the bug with the disappering and overlapping nodes? I post the bug almost a year ago and nothing happens until now...

Posted: Tue Feb 10, 2009 3:01 pm
by narcis
Hello newcomer,

I've checked the issue hasn't been fixed yet and increased its priority on the list.