using DevComponents.DotNetBar.Charts.Style; using System.Drawing; namespace DevComponents.DotNetBar.Charts { /// /// Provides the layout information for chart layout pass /// public class ChartLayoutInfo { #region Public variables public Graphics Graphics; public Rectangle ClientBounds; public Rectangle LayoutBounds; public Point ScrollOffset; public bool LayoutBoundsAdjusted; #endregion public ChartLayoutInfo(Graphics graphics, Rectangle clientBounds) { Graphics = graphics; ClientBounds = clientBounds; } } }