18 lines
360 B
C#
18 lines
360 B
C#
![]() |
using System;
|
|||
|
using CPF.Drawing;
|
|||
|
using CPF.ReoGrid.Events;
|
|||
|
using CPF.ReoGrid.Rendering;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Chart
|
|||
|
{
|
|||
|
public class ChartDrawingEventArgs : DrawingEventArgs
|
|||
|
{
|
|||
|
public IChart Chart { get; private set; }
|
|||
|
|
|||
|
internal ChartDrawingEventArgs(IChart chart, RDrawingContext dc, Rect bounds) : base(dc, bounds)
|
|||
|
{
|
|||
|
this.Chart = chart;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|