I use TeeChartNET2009VSNET2008_4.0.2009.62332.exe.
1. There is a problem in Error Bar Series Visible.
Red Series is ErrorBar.
At Chart Resize Width Change, ErrorBar Series not visible.
ErrorBar Width Visible Issue
Re: ErrorBar Width Visible Issue
Hi BISTEL,
I'm trying to reproduce the problem with the following simple example project, but I can't:
Could you please check if you can reproduce it in your machine and, if not, could you please modify it so we can reproduce the problem here?
Thanks in advance.
I'm trying to reproduce the problem with the following simple example project, but I can't:
Code: Select all
public Form1()
{
InitializeComponent();
CreateChart();
InitializeChart();
}
private Steema.TeeChart.TChart tChart1;
private void CreateChart()
{
tChart1 = new Steema.TeeChart.TChart();
this.Controls.Add(tChart1);
tChart1.Dock = DockStyle.Fill;
Steema.TeeChart.ChartController chartController1 = new Steema.TeeChart.ChartController();
this.Controls.Add(chartController1);
chartController1.Chart = tChart1;
chartController1.Dock = DockStyle.Top;
}
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.ErrorBar errorbar1 = new Steema.TeeChart.Styles.ErrorBar(tChart1.Chart);
errorbar1.Add(500, 0, 320);
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
line1.Pointer.Visible = true;
for (int i = 0; i < 100; i++)
{
line1.Add(i*10, i*3);
}
tChart1.Axes.Bottom.SetMinMax(0, 1000);
}
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |