Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/BarSeriesProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/BarSeriesProperties.cs (.../BarSeriesProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/BarSeriesProperties.cs (.../BarSeriesProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -10,48 +10,78 @@ public class BarSeriesProperties : ChartSeriesProperties { [ResourcesCategory(typeof(Resources), "Categories_General")] - [ResourcesDisplayName(typeof(Resources),"BarSeriesProperties_Color_DisplayName")] + [ResourcesDisplayName(typeof(Resources), "BarSeriesProperties_Color_DisplayName")] [ResourcesDescription(typeof(Resources), "BarSeriesProperties_Color_Description")] public Color Color { - get { return data.Color; } - set { data.Color = value; } + get + { + return data.Color; + } + set + { + data.Color = 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 Width { - 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), "BarSeriesProperties_DashStyle_DisplayName")] [ResourcesDescription(typeof(Resources), "BarSeriesProperties_DashStyle_Description")] public DashStyle DashStyle { - get { return data.DashStyle; } - set { data.DashStyle = value; } + get + { + return data.DashStyle; + } + set + { + data.DashStyle = 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