31 lines
671 B
C#
31 lines
671 B
C#
using DevComponents.DotNetBar.Charts.Style;
|
|
using System.Drawing;
|
|
|
|
namespace DevComponents.DotNetBar.Charts
|
|
{
|
|
/// <summary>
|
|
/// Provides the layout information for chart layout pass
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|
|
}
|