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
220
ColumnChart - Columns by equal value are not rendered
posted

Hi everyone! It seems that if I create a ColumnChart, each column with the same height value, the chart is not rendered (except the axes).

Here is a code that reproduce this issue.

private void Form1_Load(object sender, EventArgs e)

 {

 this.ultraChart1.Series.Clear();

this.ultraChart1.Data.ZeroAligned = true;

NumericSeries ns = new NumericSeries();

ns.Points.Add(new NumericDataPoint(20, "1", false));

ns.Points.Add(new NumericDataPoint(20, "2", false));

ns.Points.Add(new NumericDataPoint(20, "3", false));

ns.Points.Add(new NumericDataPoint(20, "4", false));

this.ultraChart1.Series.Add(ns);

}

P.S. I am using the 7.3 version with the latest hot-fix installed.

Thanks!