13 lines
199 B
C#
13 lines
199 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Chart
|
|
{
|
|
public class DoughnutChart : PieChart
|
|
{
|
|
protected override PiePlotView CreatePlotViewInstance()
|
|
{
|
|
return new DoughnutPlotView(this);
|
|
}
|
|
}
|
|
}
|