@@ -314,12 +314,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
314314 return PictureBoxSizeMode . Zoom ;
315315 }
316316
317- /// <summary>
317+ /*/ // <summary>
318318 /// Converts the RDL GradientType to GradientStyle.
319319 /// </summary>
320320 /// <param name="gradientType">The RDL GradientType value.</param>
321321 /// <returns>The GradientStyle value.</returns>
322- /* public static GradientStyle ConvertGradientType(string gradientType)
322+ public static GradientStyle ConvertGradientType(string gradientType)
323323 {
324324 if (gradientType == "LeftRight")
325325 {
@@ -352,12 +352,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
352352 return GradientStyle.None;
353353 }*/
354354
355- /// <summary>
355+ /*/ // <summary>
356356 /// Converts the RDL Chart.Type to SeriesChartType.
357357 /// </summary>
358358 /// <param name="chartType">The RDL Chart.Type value.</param>
359359 /// <returns>The SeriesChartType value.</returns>
360- /* public static SeriesChartType ConvertChartType(string chartType)
360+ public static SeriesChartType ConvertChartType(string chartType)
361361 {
362362 if (chartType == "Area")
363363 {
@@ -386,12 +386,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
386386 return SeriesChartType.Column;
387387 }*/
388388
389- /// <summary>
389+ /*/ // <summary>
390390 /// Converts the RDL Chart.Palette to ChartColorPalette.
391391 /// </summary>
392392 /// <param name="chartPalette">The RDL Chart.Palette value.</param>
393393 /// <returns>The RDL ChartColorPalette value.</returns>
394- /* public static ChartColorPalette ConvertChartPalette(string chartPalette)
394+ public static ChartColorPalette ConvertChartPalette(string chartPalette)
395395 {
396396 if (chartPalette == "EarthTones")
397397 {
@@ -420,12 +420,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
420420 return ChartColorPalette.None;
421421 }*/
422422
423- /// <summary>
423+ /*/ // <summary>
424424 /// Converts the RDL Chart.Legend.Position to Legend.Docking and Legend.Alignment.
425425 /// </summary>
426426 /// <param name="chartLegendPosition">The RDL Chart.Legend.Position value.</param>
427427 /// <param name="legend">The Legend instance to convert to.</param>
428- /* public static void ConvertChartLegendPosition(string chartLegendPosition, Legend legend)
428+ public static void ConvertChartLegendPosition(string chartLegendPosition, Legend legend)
429429 {
430430 if (chartLegendPosition == "TopLeft")
431431 {
@@ -489,12 +489,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
489489 }
490490 }*/
491491
492- /// <summary>
492+ /*/ // <summary>
493493 /// Converts the RDL Chart.Legend.Layout to LegendStyle.
494494 /// </summary>
495495 /// <param name="chartLegendLayout">The RDL Chart.Legend.Layout value.</param>
496496 /// <returns>The LegendStyle value.</returns>
497- /* public static LegendStyle ConvertChartLegendLayout(string chartLegendLayout)
497+ public static LegendStyle ConvertChartLegendLayout(string chartLegendLayout)
498498 {
499499 if (chartLegendLayout == "Table")
500500 {
@@ -507,12 +507,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
507507 return LegendStyle.Column;
508508 }*/
509509
510- /// <summary>
510+ /*/ // <summary>
511511 /// Converts the RDL BorderStyle to ChartDashStyle.
512512 /// </summary>
513513 /// <param name="borderStyle">The RDL BorderStyle value.</param>
514514 /// <returns>The ChartDashStyle value.</returns>
515- /* public static ChartDashStyle ConvertBorderStyleToChartDashStyle(string borderStyle)
515+ public static ChartDashStyle ConvertBorderStyleToChartDashStyle(string borderStyle)
516516 {
517517 if (borderStyle == "Dotted")
518518 {
@@ -525,12 +525,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
525525 return ChartDashStyle.Solid;
526526 }*/
527527
528- /// <summary>
528+ /*/ // <summary>
529529 /// Converts the RDL Axis.Visible to AxisEnabled.
530530 /// </summary>
531531 /// <param name="axisVisible">The RDL Axis.Visible value.</param>
532532 /// <returns>The AxisEnabled value.</returns>
533- /* public static AxisEnabled ConvertAxisVisibleToAxisEnabled(string axisVisible)
533+ public static AxisEnabled ConvertAxisVisibleToAxisEnabled(string axisVisible)
534534 {
535535 if (axisVisible.ToLower() == "true")
536536 {
@@ -543,12 +543,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
543543 return AxisEnabled.Auto;
544544 }*/
545545
546- /// <summary>
546+ /*/ // <summary>
547547 /// Converts the RDL TickMarkStyle to TickMarkStyle.
548548 /// </summary>
549549 /// <param name="tickMarkStyle">The RDL TickMarkStyle value.</param>
550550 /// <returns>The TickMarkStyle value.</returns>
551- /* public static TickMarkStyle ConvertTickMarkStyle(string tickMarkStyle)
551+ public static TickMarkStyle ConvertTickMarkStyle(string tickMarkStyle)
552552 {
553553 if (tickMarkStyle == "Inside")
554554 {
@@ -565,12 +565,12 @@ public static PictureBoxSizeMode ConvertSizing(string sizing)
565565 return TickMarkStyle.None;
566566 }*/
567567
568- /// <summary>
568+ /*/ // <summary>
569569 /// Converts the RDL Shading to LightStyle.
570570 /// </summary>
571571 /// <param name="shading">The RDL Shading value.</param>
572572 /// <returns>The LightStyle value.</returns>
573- /* public static LightStyle ConvertShading(string shading)
573+ public static LightStyle ConvertShading(string shading)
574574 {
575575 if (shading == "Simple")
576576 {
0 commit comments