public ComponentPieChartOptions(string title, LegendLocationValue legendLocation, LegendAlignmentValue legendAlignment, bool is3D = false, bool enableInteractivity = true, decimal pieHole = 0.0M, int width = 400, int height = 300)
 {
     Title               = title;
     Width               = width;
     Height              = height;
     LegendLocation      = legendLocation;
     LegendAlignment     = legendAlignment;
     Is3D                = is3D;
     EnableInteractivity = enableInteractivity;
     PieHole             = pieHole;
     Width               = width;
     Height              = height;
 }
 public ComponentPieChartOptions(string title, LegendLocationValue legendLocation, LegendAlignmentValue legendAlignment, bool is3D = false, bool enableInteractivity = true, decimal pieHole = 0.0M)
 {
     new ComponentPieChartOptions(
         title,
         legendLocation,
         legendAlignment,
         is3D,
         enableInteractivity,
         pieHole,
         400,
         300
         );
 }