12 lines
167 B
C#
12 lines
167 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Chart
|
|
{
|
|
public class Pie2DPlotView : PiePlotView
|
|
{
|
|
public Pie2DPlotView(Pie2DChart pieChart) : base(pieChart)
|
|
{
|
|
}
|
|
}
|
|
}
|