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!
Hi,
private void ultraChart1_FillSceneGraph(object sender, Infragistics.UltraChart.Shared.Events.FillSceneGraphEventArgs e){ IAdvanceAxis y = e.Grid["Y"] as IAdvanceAxis; if (y != null) { this.ultraChart1.Axis.Y.RangeMin = 0; this.ultraChart1.Axis.Y.RangeMax = (double)y.Maximum; this.ultraChart1.Axis.Y.RangeType = AxisRangeType.Custom; }}