20 lines
415 B
C#
20 lines
415 B
C#
using System;
|
|
using CPF.Drawing;
|
|
using CPF.ReoGrid.Drawing;
|
|
using CPF.ReoGrid.Interaction;
|
|
|
|
namespace CPF.ReoGrid.Chart
|
|
{
|
|
public class ChartPlotView : DrawingObject, IPlotView, IDrawingObject, IFloatingObject, IUserVisual
|
|
{
|
|
public Chart Chart { get; set; }
|
|
|
|
public ChartPlotView(Chart chart)
|
|
{
|
|
this.Chart = chart;
|
|
base.FillColor = Color.Transparent;
|
|
base.LineColor = Color.Transparent;
|
|
}
|
|
}
|
|
}
|