using DevComponents.DotNetBar.Charts.Style; using System.Drawing; namespace DevComponents.DotNetBar.Charts { /// /// Provides the rendering information for chart render pass. /// public class ChartRenderInfo { #region Public properties public readonly Graphics Graphics; public readonly Rectangle ClipRectangle; #endregion public ChartRenderInfo(Graphics graphics, Rectangle clipRectangle) { Graphics = graphics; ClipRectangle = clipRectangle; } } }