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
958
AutoSize doesn't work vertically
posted

Hello,

I am using a WinChart control with the AutoSize property switched on. The resizing works very well for the horizontal size (width) but not for the vertical one (height). Is this a feature, a bug or should it work in both directions?

If it should work in both directions then please tell me at which properties I should have a look at.

Thanks and best regards, Gerald

  • 28496
    Offline posted

     this property is inherited from UserControl and has no effect on the chart.  that is why we have hidden it from IntelliSense and the Properties grid...

     

     /// <summary>
            /// This property is not relevant for this class.
            /// </summary>
            /// <value></value>
            [Browsable(false)]
            [EditorBrowsable(EditorBrowsableState.Never)]
            public override bool AutoSize
            {
                get
                {
                    return base.AutoSize;
                }
                set
                {
                    base.AutoSize = value;
                }
            }