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
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; } }