So, I had a working gantt with custom shapes in V2.x, but after upgrading to the latest version(april 4th release), the shapes lost their positions and now appear as a line vertically down the chart. I am displaying shapes this way:
Code: Select all
Steema.TeeChart.Styles.Shape shpPyramid = new Steema.TeeChart.Styles.Shape();
shpPyramid.Style = Steema.TeeChart.Styles.ShapeStyles.Pyramid;
shpPyramid.HorizAxis = Steema.TeeChart.Styles.HorizontalAxis.Top;
shpPyramid.Add(dtSD, counter - dblScale, Color.Blue);
shpPyramid.Add(dtSDP1, counter + dblScale, Color.Blue);
shpPyramid.Color = Color.Blue;
shpPyramid.ShowInLegend = false;
wcFielding.Chart.Series.Add(shpPyramid);
Like I said, this code was all working in V2.x...Is there something I'm doing wrong in V3?
Thanks for your help.