Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/PolygonChartSeriesProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/PolygonChartSeriesProperties.cs (.../PolygonChartSeriesProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/PolygonChartSeriesProperties.cs (.../PolygonChartSeriesProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -14,80 +14,134 @@ [ResourcesDescription(typeof(Resources), "PolygonChartSeriesProperties_Closed_Description")] public bool Closed { - get { return data.AutoClose; } - set { data.AutoClose = value; } + get + { + return data.AutoClose; + } + set + { + data.AutoClose = value; + } } [ResourcesCategory(typeof(Resources), "ChartingSeriesProperties_AreaStyle_DisplayName")] [ResourcesDisplayName(typeof(Resources), "PolygonChartSeriesProperties_FillColor_DisplayName")] [ResourcesDescription(typeof(Resources), "PolygonChartSeriesProperties_AreaColor_Description")] public Color Color { - get { return data.Color; } - set { data.Color = value; } + get + { + return data.Color; + } + set + { + data.Color = value; + } } [ResourcesCategory(typeof(Resources), "ChartingSeriesProperties_AreaStyle_DisplayName")] [ResourcesDisplayName(typeof(Resources), "PolygonChartSeriesProperties_Transparency_DisplayName")] [ResourcesDescription(typeof(Resources), "PolygonChartSeriesProperties_Transparency_Description")] public int Transparency { - get { return data.Transparency; } - set { data.Transparency = value; } + get + { + return data.Transparency; + } + set + { + data.Transparency = value; + } } [ResourcesCategory(typeof(Resources), "ChartingSeriesProperties_AreaStyle_DisplayName")] [ResourcesDisplayName(typeof(Resources), "PolygonChartSeriesProperties_UseHatch_DisplayName")] [ResourcesDescription(typeof(Resources), "PolygonChartSeriesProperties_UseHatch_Description")] public bool UseHatch { - get { return data.UseHatch; } - set { data.UseHatch = value; } + get + { + return data.UseHatch; + } + set + { + data.UseHatch = value; + } } [ResourcesCategory(typeof(Resources), "ChartingSeriesProperties_AreaStyle_DisplayName")] [ResourcesDisplayName(typeof(Resources), "PolygonChartSeriesProperties_HatchStyle_DisplayName")] [ResourcesDescription(typeof(Resources), "PolygonChartSeriesProperties_HatchStyle_Description")] public HatchStyle HatchStyle { - get { return data.HatchStyle; } - set { data.HatchStyle = value; } + get + { + return data.HatchStyle; + } + set + { + data.HatchStyle = value; + } } [ResourcesCategory(typeof(Resources), "ChartingSeriesProperties_AreaStyle_DisplayName")] [ResourcesDisplayName(typeof(Resources), "PolygonChartSeriesProperties_HatchColor_DisplayName")] [ResourcesDescription(typeof(Resources), "PolygonChartSeriesProperties_HatchColor_Description")] public Color HatchColor { - get { return data.HatchColor; } - set { data.HatchColor = value; } + get + { + return data.HatchColor; + } + set + { + data.HatchColor = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_LineStyle")] [ResourcesDisplayName(typeof(Resources), "BarSeriesProperties_OutlineColor_DisplayName")] [ResourcesDescription(typeof(Resources), "BarSeriesProperties_OutlineColor_Description")] public Color LineColor { - get { return data.LineColor; } - set { data.LineColor = value; } + get + { + return data.LineColor; + } + set + { + data.LineColor = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_LineStyle")] [ResourcesDisplayName(typeof(Resources), "BarSeriesProperties_Width_DisplayName")] [ResourcesDescription(typeof(Resources), "BarSeriesProperties_Width_Description")] public int LineWidth { - get { return data.LineWidth; } - set { data.LineWidth = value; } + get + { + return data.LineWidth; + } + set + { + data.LineWidth = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_LineStyle")] [ResourcesDisplayName(typeof(Resources), "ChartingProperties_Visible_DisplayName")] [ResourcesDescription(typeof(Resources), "BarSeriesProperties_LineVisible_Description")] public bool LineVisible { - get { return data.LineVisible; } - set { data.LineVisible = value; } + get + { + return data.LineVisible; + } + set + { + data.LineVisible = value; + } } } } \ No newline at end of file