CPF/CPF.ReoGrid/Chart/ChartPlotView.cs
2024-06-24 10:15:59 +08:00

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;
}
}
}