if i have Rotate and a LegendScrollbar tool within a chart the rotate tool overlaps the scrollbar functions.
Try to use the legend scrollbar:
Code: Select all
tChart1.Aspect.Chart3DPercent = 75;
tChart1.Tools.Add(new Steema.TeeChart.Tools.Rotate());
tChart1.Tools.Add(new Steema.TeeChart.Tools.LegendScrollBar());
for (int i = 0; i < 40; i++)
{
Steema.TeeChart.Styles.Bar ser = new Steema.TeeChart.Styles.Bar();
ser.Title = i.ToString();
ser.FillSampleValues(10);
tChart1.Series.Add(ser);
}
Thanks!