Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/ChartSeriesProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/ChartSeriesProperties.cs (.../ChartSeriesProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/ChartSeriesProperties.cs (.../ChartSeriesProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -13,26 +13,44 @@ [ResourcesDescription(typeof(Resources), "ChartSeriesProperties_ShowInLegend_Description")] public bool ShowInLegend { - get { return data.ShowInLegend; } - set { data.ShowInLegend = value; } + get + { + return data.ShowInLegend; + } + set + { + data.ShowInLegend = value; + } } [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "ChartAxisProperties_Title_DisplayName")] [ResourcesDescription(typeof(Resources), "ChartSeriesProperties_Title_Description")] public string Title { - get { return data.Title; } - set { data.Title = value; } + get + { + return data.Title; + } + set + { + data.Title = value; + } } [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "ChartSeriesProperties_VerticalAxis_DisplayName")] [ResourcesDescription(typeof(Resources), "ChartSeriesProperties_VerticalAxis_Description")] public VerticalAxis VerticalAxis { - get { return data.VertAxis; } - set { data.VertAxis = value; } + get + { + return data.VertAxis; + } + set + { + data.VertAxis = value; + } } } } \ No newline at end of file