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
585
Data displayed 'flat' in Gantt-Chart
posted

Hello,

I am using multiple UltraCharts in my project to display several Gantt-Charts. In an older Version the Gantt-Data was displayed ok as to be seen from screenshot Gantt_02.png.

Since the project has been upgraded from Infragistics version 7.3 to 9.2, the data in the Gantt-Chart is being displayed 'flat' as if all the rows would be displayed on top of each other with no height:

The actual code in my project has not changed, just the references to the newer Infragistics 9.2 assemblies.Also, the row descriptions have gone missing on the left side.

Have you seen anything like this before? I couldn't figure out what is causing this...

Parents
No Data
Reply
  • 585
    Verified Answer
    posted

    Got it, the effect was obviously caused by the usage of

    myUltraChart.Axis.Y.RangeMax = 1000d;
    myUltraChart.Axis.Y.RangeType = AxisRangeType.Custom;

    which seemed to work perfectly in earlier versions.

     

    However, I was able to get my Gantt chart back by setting the RangeType back to it's default value

    AxisRangeType.Automatic;
Children
No Data