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