Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1401
Glitches at the end of the Stack chart series
posted

Hi all,

As shown in the image below (attached), there are glitches at the end of stack chart. The corresponding data does not have these values. It should be smooth at the end.

Please help us to resolve this issue.

Thanks and regards

Kumar Nagaraju

Parents
  • 28496
    Offline posted

    i was not able to reproduce this problem using this code on a new form:

            private void Form1_Load(object sender, EventArgs e)
            {
                UltraChart ultraChart1 = new UltraChart();
                ultraChart1.Dock = DockStyle.Fill;
                this.Controls.Add(ultraChart1);

                ultraChart1.ChartType = ChartType.StackAreaChart;
                DataTable table = new DataTable();
                table.Columns.Add("one", typeof(double));
                table.Columns.Add("two", typeof(double));
                for (int r = 0; r < 100; r++)
                {
                    table.Rows.Add(new object[] { r, r });
                }
                ultraChart1.Data.DataSource = table;
                ultraChart1.Data.SwapRowsAndColumns = true;
                ultraChart1.Data.DataBind();
            }

    can you advise me on how to reproduce the problem you described?

Reply Children